UI
7 months ago
DataEncryption.php
3 months ago
Escape.php
3 years ago
Facade.php
3 years ago
Hooks.php
2 months ago
Info.php
1 year ago
PhpAdapter.php
2 years ago
Sanitize.php
2 months ago
SettingsTable.php
2 months ago
Hooks.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Framework\Facades; |
| 4 | |
| 5 | use WPStaging\Framework\Utils\Hooks as WpstgHooks; |
| 6 | |
| 7 | /** |
| 8 | * @method static void doAction(string $tag, mixed ...$args) |
| 9 | * @method static mixed applyFilters(string $hookName, mixed $value, mixed ...$args) |
| 10 | * @method static void registerInternalHook(string $hookName, callable $callback) |
| 11 | * @method static void unregisterInternalHook(string $hookName) |
| 12 | * @method static mixed callInternalHook(string $hookName, array $args = [], mixed $defaultValue = null) |
| 13 | */ |
| 14 | class Hooks extends Facade |
| 15 | { |
| 16 | protected static function getFacadeAccessor() |
| 17 | { |
| 18 | return WpstgHooks::class; |
| 19 | } |
| 20 | } |
| 21 |