Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
22 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
23 | { |
||
24 | /** @var ValidateSchemaCommand $command */ |
||
25 | $command = $serviceLocator->get('doctrine.orm_cmd.validate_schema'); |
||
26 | |||
27 | $input = new RequestInput(new Request(array())); |
||
28 | |||
29 | $output = new PropertyOutput(); |
||
30 | |||
31 | return new CheckCommand($command, $input, $output); |
||
32 | } |
||
33 | } |
||
34 |