@@ -45,9 +45,9 @@ discard block |
||
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 |
||
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 | /** |
@@ -45,9 +45,9 @@ discard block |
||
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 |
||
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 | /** |
@@ -45,9 +45,9 @@ discard block |
||
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 |
||
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 | /** |
@@ -42,11 +42,11 @@ discard block |
||
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 |
||
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 | /** |
@@ -42,13 +42,13 @@ discard block |
||
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 |
||
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 | /** |
@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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( |
@@ -42,12 +42,12 @@ discard block |
||
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 |
||
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 | /** |
@@ -49,17 +49,17 @@ discard block |
||
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 |
||
82 | 82 | |
83 | 83 | \$config->setFilterSchemaAssetsExpression(\$regexp); |
84 | 84 | EOT |
85 | - ); |
|
85 | + ); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
@@ -46,11 +46,11 @@ |
||
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 | /** |
@@ -45,9 +45,9 @@ |
||
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 | /** |
@@ -1,6 +1,6 @@ |
||
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 |