Completed
Push — master ( ba3223...b47a39 )
by Luís
17s
created
lib/Doctrine/ORM/Tools/Console/Command/ClearCache/QueryCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
     protected function configure()
46 46
     {
47 47
         $this->setName('orm:clear-cache:query')
48
-             ->setDescription('Clear all query cache of the various cache drivers')
49
-             ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, cache entries will be flushed instead of deleted/invalidated.')
50
-             ->setHelp(<<<EOT
48
+                ->setDescription('Clear all query cache of the various cache drivers')
49
+                ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, cache entries will be flushed instead of deleted/invalidated.')
50
+                ->setHelp(<<<EOT
51 51
 The <info>%command.name%</info> command is meant to clear the query cache of associated Entity Manager.
52 52
 It is possible to invalidate all cache entries at once - called delete -, or flushes the cache provider
53 53
 instance completely.
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 Finally, be aware that if <info>--flush</info> option is passed, not all cache providers are able to flush entries,
65 65
 because of a limitation of its execution nature.
66 66
 EOT
67
-             );
67
+                );
68 68
     }
69 69
 
70 70
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Console/Command/ClearCache/QueryRegionCommand.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@  discard block
 block discarded – undo
42 42
     protected function configure()
43 43
     {
44 44
         $this->setName('orm:clear-cache:region:query')
45
-             ->setDescription('Clear a second-level cache query region')
46
-             ->addArgument('region-name', InputArgument::OPTIONAL, 'The query region to clear.')
47
-             ->addOption('all', null, InputOption::VALUE_NONE, 'If defined, all query regions will be deleted/invalidated.')
48
-             ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, all cache entries will be flushed.')
49
-             ->setHelp(<<<EOT
45
+                ->setDescription('Clear a second-level cache query region')
46
+                ->addArgument('region-name', InputArgument::OPTIONAL, 'The query region to clear.')
47
+                ->addOption('all', null, InputOption::VALUE_NONE, 'If defined, all query regions will be deleted/invalidated.')
48
+                ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, all cache entries will be flushed.')
49
+                ->setHelp(<<<EOT
50 50
 The <info>%command.name%</info> command is meant to clear a second-level cache query region for an associated Entity Manager.
51 51
 It is possible to delete/invalidate all query region, a specific query region or flushes the cache provider.
52 52
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 Finally, be aware that if <info>--flush</info> option is passed,
71 71
 not all cache providers are able to flush entries, because of a limitation of its execution nature.
72 72
 EOT
73
-             );
73
+                );
74 74
     }
75 75
 
76 76
     /**
Please login to merge, or discard this patch.
Doctrine/ORM/Tools/Console/Command/ClearCache/CollectionRegionCommand.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -42,13 +42,13 @@  discard block
 block discarded – undo
42 42
     protected function configure()
43 43
     {
44 44
         $this->setName('orm:clear-cache:region:collection')
45
-             ->setDescription('Clear a second-level cache collection region')
46
-             ->addArgument('owner-class', InputArgument::OPTIONAL, 'The owner entity name.')
47
-             ->addArgument('association', InputArgument::OPTIONAL, 'The association collection name.')
48
-             ->addArgument('owner-id', InputArgument::OPTIONAL, 'The owner identifier.')
49
-             ->addOption('all', null, InputOption::VALUE_NONE, 'If defined, all entity regions will be deleted/invalidated.')
50
-             ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, all cache entries will be flushed.')
51
-             ->setHelp(<<<EOT
45
+                ->setDescription('Clear a second-level cache collection region')
46
+                ->addArgument('owner-class', InputArgument::OPTIONAL, 'The owner entity name.')
47
+                ->addArgument('association', InputArgument::OPTIONAL, 'The association collection name.')
48
+                ->addArgument('owner-id', InputArgument::OPTIONAL, 'The owner identifier.')
49
+                ->addOption('all', null, InputOption::VALUE_NONE, 'If defined, all entity regions will be deleted/invalidated.')
50
+                ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, all cache entries will be flushed.')
51
+                ->setHelp(<<<EOT
52 52
 The <info>%command.name%</info> command is meant to clear a second-level cache collection regions for an associated Entity Manager.
53 53
 It is possible to delete/invalidate all collection region, a specific collection region or flushes the cache provider.
54 54
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 Finally, be aware that if <info>--flush</info> option is passed,
73 73
 not all cache providers are able to flush entries, because of a limitation of its execution nature.
74 74
 EOT
75
-             );
75
+                );
76 76
     }
77 77
 
78 78
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
         }
98 98
 
99 99
         if ($input->getOption('flush')) {
100
-            $collectionRegion  = $cache->getCollectionCacheRegion($ownerClass, $assoc);
100
+            $collectionRegion = $cache->getCollectionCacheRegion($ownerClass, $assoc);
101 101
 
102 102
             if ( ! $collectionRegion instanceof DefaultRegion) {
103 103
                 throw new \InvalidArgumentException(sprintf(
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Console/Command/ClearCache/EntityRegionCommand.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
     protected function configure()
43 43
     {
44 44
         $this->setName('orm:clear-cache:region:entity')
45
-             ->setDescription('Clear a second-level cache entity region')
46
-             ->addArgument('entity-class', InputArgument::OPTIONAL, 'The entity name.')
47
-             ->addArgument('entity-id', InputArgument::OPTIONAL, 'The entity identifier.')
48
-             ->addOption('all', null, InputOption::VALUE_NONE, 'If defined, all entity regions will be deleted/invalidated.')
49
-             ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, all cache entries will be flushed.')
50
-             ->setHelp(<<<EOT
45
+                ->setDescription('Clear a second-level cache entity region')
46
+                ->addArgument('entity-class', InputArgument::OPTIONAL, 'The entity name.')
47
+                ->addArgument('entity-id', InputArgument::OPTIONAL, 'The entity identifier.')
48
+                ->addOption('all', null, InputOption::VALUE_NONE, 'If defined, all entity regions will be deleted/invalidated.')
49
+                ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, all cache entries will be flushed.')
50
+                ->setHelp(<<<EOT
51 51
 The <info>%command.name%</info> command is meant to clear a second-level cache entity region for an associated Entity Manager.
52 52
 It is possible to delete/invalidate all entity region, a specific entity region or flushes the cache provider.
53 53
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 Finally, be aware that if <info>--flush</info> option is passed,
72 72
 not all cache providers are able to flush entries, because of a limitation of its execution nature.
73 73
 EOT
74
-             );
74
+                );
75 75
     }
76 76
 
77 77
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Console/Command/ConvertMappingCommand.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -49,17 +49,17 @@  discard block
 block discarded – undo
49 49
     protected function configure()
50 50
     {
51 51
         $this->setName('orm:convert-mapping')
52
-             ->setAliases(['orm:convert:mapping'])
53
-             ->setDescription('Convert mapping information between supported formats')
54
-             ->addArgument('to-type', InputArgument::REQUIRED, 'The mapping type to be converted.')
55
-             ->addArgument('dest-path', InputArgument::REQUIRED, 'The path to generate your entities classes.')
56
-             ->addOption('filter', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'A string pattern used to match entities that should be processed.')
57
-             ->addOption('force', 'f', InputOption::VALUE_NONE, 'Force to overwrite existing mapping files.')
58
-             ->addOption('from-database', null, null, 'Whether or not to convert mapping information from existing database.')
59
-             ->addOption('extend', null, InputOption::VALUE_OPTIONAL, 'Defines a base class to be extended by generated entity classes.')
60
-             ->addOption('num-spaces', null, InputOption::VALUE_OPTIONAL, 'Defines the number of indentation spaces', 4)
61
-             ->addOption('namespace', null, InputOption::VALUE_OPTIONAL, 'Defines a namespace for the generated entity classes, if converted from database.')
62
-             ->setHelp(<<<EOT
52
+                ->setAliases(['orm:convert:mapping'])
53
+                ->setDescription('Convert mapping information between supported formats')
54
+                ->addArgument('to-type', InputArgument::REQUIRED, 'The mapping type to be converted.')
55
+                ->addArgument('dest-path', InputArgument::REQUIRED, 'The path to generate your entities classes.')
56
+                ->addOption('filter', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'A string pattern used to match entities that should be processed.')
57
+                ->addOption('force', 'f', InputOption::VALUE_NONE, 'Force to overwrite existing mapping files.')
58
+                ->addOption('from-database', null, null, 'Whether or not to convert mapping information from existing database.')
59
+                ->addOption('extend', null, InputOption::VALUE_OPTIONAL, 'Defines a base class to be extended by generated entity classes.')
60
+                ->addOption('num-spaces', null, InputOption::VALUE_OPTIONAL, 'Defines the number of indentation spaces', 4)
61
+                ->addOption('namespace', null, InputOption::VALUE_OPTIONAL, 'Defines a namespace for the generated entity classes, if converted from database.')
62
+                ->setHelp(<<<EOT
63 63
 Convert mapping information between supported formats.
64 64
 
65 65
 This is an execute <info>one-time</info> command. It should not be necessary for
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 
83 83
     \$config->setFilterSchemaAssetsExpression(\$regexp);
84 84
 EOT
85
-             );
85
+                );
86 86
     }
87 87
 
88 88
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -46,11 +46,11 @@
 block discarded – undo
46 46
     protected function configure()
47 47
     {
48 48
         $this->setName('orm:generate-repositories')
49
-             ->setAliases(['orm:generate:repositories'])
50
-             ->setDescription('Generate repository classes from your mapping information')
51
-             ->addArgument('dest-path', InputArgument::REQUIRED, 'The path to generate your repository classes.')
52
-             ->addOption('filter', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'A string pattern used to match entities that should be processed.')
53
-             ->setHelp('Generate repository classes from your mapping information.');
49
+                ->setAliases(['orm:generate:repositories'])
50
+                ->setDescription('Generate repository classes from your mapping information')
51
+                ->addArgument('dest-path', InputArgument::REQUIRED, 'The path to generate your repository classes.')
52
+                ->addOption('filter', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'A string pattern used to match entities that should be processed.')
53
+                ->setHelp('Generate repository classes from your mapping information.');
54 54
     }
55 55
 
56 56
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Console/Command/GenerateEntitiesCommand.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -47,18 +47,18 @@  discard block
 block discarded – undo
47 47
     protected function configure()
48 48
     {
49 49
         $this->setName('orm:generate-entities')
50
-             ->setAliases(['orm:generate:entities'])
51
-             ->setDescription('Generate entity classes and method stubs from your mapping information')
52
-             ->addArgument('dest-path', InputArgument::REQUIRED, 'The path to generate your entity classes.')
53
-             ->addOption('filter', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'A string pattern used to match entities that should be processed.')
54
-             ->addOption('generate-annotations', null, InputOption::VALUE_OPTIONAL, 'Flag to define if generator should generate annotation metadata on entities.', false)
55
-             ->addOption('generate-methods', null, InputOption::VALUE_OPTIONAL, 'Flag to define if generator should generate stub methods on entities.', true)
56
-             ->addOption('regenerate-entities', null, InputOption::VALUE_OPTIONAL, 'Flag to define if generator should regenerate entity if it exists.', false)
57
-             ->addOption('update-entities', null, InputOption::VALUE_OPTIONAL, 'Flag to define if generator should only update entity if it exists.', true)
58
-             ->addOption('extend', null, InputOption::VALUE_REQUIRED, 'Defines a base class to be extended by generated entity classes.')
59
-             ->addOption('num-spaces', null, InputOption::VALUE_REQUIRED, 'Defines the number of indentation spaces', 4)
60
-             ->addOption('no-backup', null, InputOption::VALUE_NONE, 'Flag to define if generator should avoid backuping existing entity file if it exists.')
61
-             ->setHelp(<<<EOT
50
+                ->setAliases(['orm:generate:entities'])
51
+                ->setDescription('Generate entity classes and method stubs from your mapping information')
52
+                ->addArgument('dest-path', InputArgument::REQUIRED, 'The path to generate your entity classes.')
53
+                ->addOption('filter', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'A string pattern used to match entities that should be processed.')
54
+                ->addOption('generate-annotations', null, InputOption::VALUE_OPTIONAL, 'Flag to define if generator should generate annotation metadata on entities.', false)
55
+                ->addOption('generate-methods', null, InputOption::VALUE_OPTIONAL, 'Flag to define if generator should generate stub methods on entities.', true)
56
+                ->addOption('regenerate-entities', null, InputOption::VALUE_OPTIONAL, 'Flag to define if generator should regenerate entity if it exists.', false)
57
+                ->addOption('update-entities', null, InputOption::VALUE_OPTIONAL, 'Flag to define if generator should only update entity if it exists.', true)
58
+                ->addOption('extend', null, InputOption::VALUE_REQUIRED, 'Defines a base class to be extended by generated entity classes.')
59
+                ->addOption('num-spaces', null, InputOption::VALUE_REQUIRED, 'Defines the number of indentation spaces', 4)
60
+                ->addOption('no-backup', null, InputOption::VALUE_NONE, 'Flag to define if generator should avoid backuping existing entity file if it exists.')
61
+                ->setHelp(<<<EOT
62 62
 Generate entity classes and method stubs from your mapping information.
63 63
 
64 64
 If you use the <comment>--update-entities</comment> or <comment>--regenerate-entities</comment> flags your existing
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 class is supposed to extend which. You have to adjust the entity
79 79
 code manually for inheritance to work!
80 80
 EOT
81
-             );
81
+                );
82 82
     }
83 83
 
84 84
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
         $entityGenerator->setRegenerateEntityIfExists($input->getOption('regenerate-entities'));
123 123
         $entityGenerator->setUpdateEntityIfExists($input->getOption('update-entities'));
124 124
         $entityGenerator->setNumSpaces($input->getOption('num-spaces'));
125
-        $entityGenerator->setBackupExisting(!$input->getOption('no-backup'));
125
+        $entityGenerator->setBackupExisting( ! $input->getOption('no-backup'));
126 126
 
127 127
         if (($extend = $input->getOption('extend')) !== null) {
128 128
             $entityGenerator->setClassToExtend($extend);
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Console/Command/InfoCommand.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -40,13 +40,13 @@  discard block
 block discarded – undo
40 40
     protected function configure()
41 41
     {
42 42
         $this->setName('orm:info')
43
-             ->setDescription('Show basic information about all mapped entities')
44
-             ->setHelp(<<<EOT
43
+                ->setDescription('Show basic information about all mapped entities')
44
+                ->setHelp(<<<EOT
45 45
 The <info>%command.name%</info> shows basic information about which
46 46
 entities exist and possibly if their mapping information contains errors or
47 47
 not.
48 48
 EOT
49
-             );
49
+                );
50 50
     }
51 51
 
52 52
     /**
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
         $entityManager = $this->getHelper('em')->getEntityManager();
61 61
 
62 62
         $entityClassNames = $entityManager->getConfiguration()
63
-                                          ->getMetadataDriverImpl()
64
-                                          ->getAllClassNames();
63
+                                            ->getMetadataDriverImpl()
64
+                                            ->getAllClassNames();
65 65
 
66 66
         if ( ! $entityClassNames) {
67 67
             $ui->caution(
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Console/Command/EnsureProductionSettingsCommand.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,9 +45,9 @@
 block discarded – undo
45 45
     protected function configure()
46 46
     {
47 47
         $this->setName('orm:ensure-production-settings')
48
-             ->setDescription('Verify that Doctrine is properly configured for a production environment')
49
-             ->addOption('complete', null, InputOption::VALUE_NONE, 'Flag to also inspect database connection existence.')
50
-             ->setHelp('Verify that Doctrine is properly configured for a production environment.');
48
+                ->setDescription('Verify that Doctrine is properly configured for a production environment')
49
+                ->addOption('complete', null, InputOption::VALUE_NONE, 'Flag to also inspect database connection existence.')
50
+                ->setHelp('Verify that Doctrine is properly configured for a production environment.');
51 51
     }
52 52
 
53 53
     /**
Please login to merge, or discard this patch.