| Total Complexity | 4 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class DispatcherServiceProvider extends AbstractSignatureServiceProvider |
||
| 12 | { |
||
| 13 | public const SERVICE_DISPATCHER = 'dispatcher'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | */ |
||
| 18 | public function provides() |
||
| 23 | ]; |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function register() |
||
| 30 | { |
||
| 31 | $this->registerDispatcher(); |
||
| 32 | } |
||
| 33 | |||
| 34 | protected function registerDispatcher() |
||
| 39 | }); |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return Dispatcher |
||
| 44 | */ |
||
| 45 | public static function newDispatcher() |
||
| 48 | } |
||
| 49 | } |
||
| 50 |