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