Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function getConfig(ConfigEvent $event) |
||
27 | { |
||
28 | return new Config([ |
||
29 | |||
30 | 'example_module' => [ |
||
31 | 'test_key' => ['example_value'], |
||
32 | ], |
||
33 | |||
34 | new Route('/listener-test', 'ExampleModule\Listener\ExampleListener'), |
||
35 | |||
36 | new Route('/config', [$this, 'homeAction']), |
||
37 | ]); |
||
38 | } |
||
39 | |||
62 |