ArrayableInterface.php
5 years ago
HydrateableInterface.php
5 years ago
ShutdownableInterface.php
5 years ago
TransientInterface.php
5 years ago
ShutdownableInterface.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Framework\Interfaces; |
| 4 | |
| 5 | /** |
| 6 | * Interface ShutdownableInterface |
| 7 | * |
| 8 | * @see \WPStaging\Framework\DI\Container::make |
| 9 | * |
| 10 | * @package WPStaging\Framework\Interfaces |
| 11 | */ |
| 12 | interface ShutdownableInterface |
| 13 | { |
| 14 | /** |
| 15 | * This code will be hooked to the "shutdown" WordPress action. |
| 16 | * |
| 17 | * @return void |
| 18 | */ |
| 19 | public function onWpShutdown(); |
| 20 | } |
| 21 |