| 1 | <?php |
||
| 19 | abstract class OnBeginMiddleware extends AbstractMiddleware implements After, BeginSignal |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @return void |
||
| 23 | */ |
||
| 24 | abstract protected function process(); |
||
| 25 | |||
| 26 | /** |
||
| 27 | * We override this function to manually call the `process` function. |
||
| 28 | */ |
||
| 29 | final public function after() |
||
| 33 | } |
||
| 34 | |||
| 35 |