Skip to content
Snippets Groups Projects
Select Git revision
  • e961cc4b6bfd1505aff7cc293a52e5364dbb359c
  • master default protected
  • feat/npm-publish
  • feat/demo-deploy
  • change-demo-deploy
  • remove-smoke
  • feat/acceptance-tests
  • feature/deploy-composer.json
  • feature/mysql-bin-logs
  • skip-codecept-for-libs
  • include-composer-json
  • exclude-wp-assets
  • update_codecept_image
  • fix/silenced-copy
  • remove-free-translations
  • codeception-with-optional-step
  • improve-parallelization
  • linter-exit
  • change-images
  • fix/linter
  • globally-raise-mem-limit
  • no-symlink2
22 results

gitlab-ci-1.2.yml

Blame
  • HookablePuginDependant.php 328 B
    <?php
    
    namespace WPDesk\PluginBuilder\Plugin;
    
    interface HookablePluginDependant extends Hookable {
    
    	/**
    	 * Set Plugin.
    	 *
    	 * @param AbstractPlugin $plugin Plugin.
    	 *
    	 * @return null
    	 */
    	public function set_plugin( $plugin );
    
    	/**
    	 * Get plugin.
    	 *
    	 * @return AbstractPlugin.
    	 */
    	public function get_plugin();
    
    }