Select Git revision
gitlab-ci-1.2.yml
-
Bartek Jaskulski authored
GitLab way of running MR pipelines results in our jobs requiring undefined dependencies (`phpcs` requires `prepare vendor prefixed`). Everything works properly for regular branch and tag pipelines, but merge requests are triggering error or invalid YAML. Simply, disable those jobs in CI. Signed-off-by:
Bart Jaskulski <bjaskulski@protonmail.com>
Bartek Jaskulski authoredGitLab way of running MR pipelines results in our jobs requiring undefined dependencies (`phpcs` requires `prepare vendor prefixed`). Everything works properly for regular branch and tag pipelines, but merge requests are triggering error or invalid YAML. Simply, disable those jobs in CI. Signed-off-by:
Bart Jaskulski <bjaskulski@protonmail.com>
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();
}