Failed Conditions
Push — master ( fa4d3b...3cef55 )
by Marco
24s queued 18s
created
lib/Doctrine/ORM/Tools/Console/Command/RunDqlCommand.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@
 block discarded – undo
33 33
     protected function configure()
34 34
     {
35 35
         $this->setName('orm:run-dql')
36
-             ->setDescription('Executes arbitrary DQL directly from the command line')
37
-             ->addArgument('dql', InputArgument::REQUIRED, 'The DQL to execute.')
38
-             ->addOption('hydrate', null, InputOption::VALUE_REQUIRED, 'Hydration mode of result set. Should be either: object, array, scalar or single-scalar.', 'object')
39
-             ->addOption('first-result', null, InputOption::VALUE_REQUIRED, 'The first result in the result set.')
40
-             ->addOption('max-result', null, InputOption::VALUE_REQUIRED, 'The maximum number of results in the result set.')
41
-             ->addOption('show-sql', null, InputOption::VALUE_NONE, 'Dump generated SQL instead of executing query')
42
-             ->setHelp('Executes arbitrary DQL directly from the command line.');
36
+                ->setDescription('Executes arbitrary DQL directly from the command line')
37
+                ->addArgument('dql', InputArgument::REQUIRED, 'The DQL to execute.')
38
+                ->addOption('hydrate', null, InputOption::VALUE_REQUIRED, 'Hydration mode of result set. Should be either: object, array, scalar or single-scalar.', 'object')
39
+                ->addOption('first-result', null, InputOption::VALUE_REQUIRED, 'The first result in the result set.')
40
+                ->addOption('max-result', null, InputOption::VALUE_REQUIRED, 'The maximum number of results in the result set.')
41
+                ->addOption('show-sql', null, InputOption::VALUE_NONE, 'Dump generated SQL instead of executing query')
42
+                ->setHelp('Executes arbitrary DQL directly from the command line.');
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.