| 1 | <?php |
||
| 18 | abstract class AbstractHandler |
||
| 19 | { |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param int $count |
||
| 23 | * @param array $chain |
||
| 24 | * @return mixed |
||
| 25 | */ |
||
| 26 | abstract public function request(int $count, array $chain); |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param int $count |
||
| 30 | * @param array $chain |
||
| 31 | */ |
||
| 32 | protected function next(int $count, array $chain): void |
||
| 45 | } |
||
| 46 |