Select Git revision
changelog.txt
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;
}