| 1 | <?php |
||
| 19 | class BehaviourMiddleware extends OnBeginMiddleware implements SendsMiddlewareSignal |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @todo |
||
| 23 | */ |
||
| 24 | protected function process() |
||
| 25 | { |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function getSignalName() |
||
| 32 | { |
||
| 33 | return BehaviourMiddleware::class; |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return int |
||
| 38 | */ |
||
| 39 | public function getPriority() |
||
| 43 | } |
||
| 44 |