File "HookablePluginDependant.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping-pro/vendor/wpdesk/wp-builder/src/Plugin/HookablePluginDependant.php
File size: 343 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace WPDesk\PluginBuilder\Plugin;
interface HookablePluginDependant extends Hookable {
/**
* Set Plugin.
*
* @param AbstractPlugin $plugin Plugin.
*
* @return null
*/
public function set_plugin( AbstractPlugin $plugin );
/**
* Get plugin.
*
* @return AbstractPlugin.
*/
public function get_plugin();
}