| 1 | <?php |
||
| 10 | trait ShutdownTrait |
||
| 11 | { |
||
| 12 | /** @var ShutdownInterface */ |
||
| 13 | private $shutdown; |
||
| 14 | |||
| 15 | /** @var DateTime */ |
||
| 16 | private $startTime; |
||
| 17 | |||
| 18 | public function setShutdown(ShutdownInterface $shutdown) |
||
| 23 | |||
| 24 | private function shouldShutdown(): bool |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @throws ShutdownException |
||
| 31 | */ |
||
| 32 | private function checkShutdown(): void |
||
| 38 | } |
||
| 39 |