Skip to content
Snippets Groups Projects
Select Git revision
  • 1d77305a11ab05a6dd4507fb2ee13b256893bcb1
  • master default protected
  • fix/woo-stubs-dir
  • default-packages
  • use-internal-packages
  • update-setup
  • feature/wpdesk-cs
  • 2.5.3
  • 2.5.2
  • 2.5.1
  • 2.5.0
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3
  • 2.2.1
  • 2.2
  • 2.1
  • 2.0
  • 1.10.15
  • 1.10.12
  • 1.10.8
  • 1.10.7
  • 1.10.6
  • 1.10.5
  • 1.10.3
  • 1.10.2
27 results

changelog.txt

Blame
  • To find the state of this project's repository at the time of any of these versions, check out the tags.
    AbstractHookProvider.php 285 B
    <?php
    declare( strict_types=1 );
    
    namespace WPDesk\Init\HookProvider;
    
    use WPDesk\Init\HooksProvider;
    use WPDesk\Init\PluginAwareInterface;
    use WPDesk\Init\PluginAwareTrait;
    
    abstract class AbstractHookProvider implements HooksProvider, PluginAwareInterface {
    	use PluginAwareTrait;
    
    }