Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
18 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
19 | { |
||
20 | /** @var ControllerManager $serviceLocator */ |
||
21 | $serviceLocator = $serviceLocator->getServiceLocator(); |
||
22 | |||
23 | $searchForm = $serviceLocator->get('forms') |
||
24 | ->get('Cv/SearchForm'); |
||
25 | |||
26 | return new IndexController($searchForm); |
||
27 | } |
||
28 | |||
29 | } |