Skip to content
Snippets Groups Projects

added method: get_hookable_instance_by_class_name

Merged Krzysztof Dyszczyk requested to merge feature/get-hookable into master
2 files
+ 25
0
Compare changes
  • Side-by-side
  • Inline

Files

+ 9
0
@@ -11,5 +11,14 @@ interface HookableCollection extends Hookable {
*/
public function add_hookable( Hookable $hookable_object );
/**
* Get hookable instance.
*
* @param string $class_name Class name.
*
* @return false|Hookable
*/
public function get_hookable_instance_by_class_name( $class_name );
}
Loading