| 1 | <?php  | 
            ||
| 19 | abstract class DefaultMiddleware extends AbstractMiddleware implements Before, EndSignal  | 
            ||
| 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 before()  | 
            ||
| 33 | }  | 
            ||
| 34 | |||
| 35 |