Failed Conditions
Pull Request — develop (#6873)
by
unknown
112:44 queued 47:41
created
lib/Doctrine/ORM/Tools/Console/Command/ClearCache/ResultCommand.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:result')
48
-             ->setDescription('Clear all result 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 result 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 result 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/MetadataCommand.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:metadata')
48
-             ->setDescription('Clear all metadata 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 metadata 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 metadata 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/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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\ORM\Tools\Console\Command\ClearCache;
6 6
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         }
83 83
 
84 84
         if ($input->getOption('flush')) {
85
-            $collectionRegion  = $cache->getCollectionCacheRegion($ownerClass, $assoc);
85
+            $collectionRegion = $cache->getCollectionCacheRegion($ownerClass, $assoc);
86 86
 
87 87
             if ( ! $collectionRegion instanceof DefaultRegion) {
88 88
                 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/EnsureProductionSettingsCommand.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\ORM\Tools\Console\Command;
6 6
 
Please login to merge, or discard this patch.