UI
2 years ago
Escape.php
3 years ago
Facade.php
3 years ago
Hooks.php
2 years ago
PhpAdapter.php
2 years ago
Sanitize.php
3 years ago
Hooks.php
18 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 $hookName, mixed ...$args) |
| 9 | * @method static mixed applyFilters(string $hookName, mixed $value, mixed ...$args) |
| 10 | */ |
| 11 | class Hooks extends Facade |
| 12 | { |
| 13 | protected static function getFacadeAccessor() |
| 14 | { |
| 15 | return WpstgHooks::class; |
| 16 | } |
| 17 | } |
| 18 |