@@ -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; |
6 | 6 |
@@ -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; |
6 | 6 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Doctrine\ORM\Tools\Event; |
5 | 5 |
@@ -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\Pagination; |
6 | 6 |
@@ -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\Pagination; |
6 | 6 |
@@ -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; |
6 | 6 |
@@ -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; |
6 | 6 |
@@ -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\ClearCache; |
6 | 6 |
@@ -30,9 +30,9 @@ discard block |
||
30 | 30 | protected function configure() |
31 | 31 | { |
32 | 32 | $this->setName('orm:clear-cache:metadata') |
33 | - ->setDescription('Clear all metadata cache of the various cache drivers') |
|
34 | - ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, cache entries will be flushed instead of deleted/invalidated.') |
|
35 | - ->setHelp(<<<'EOT' |
|
33 | + ->setDescription('Clear all metadata cache of the various cache drivers') |
|
34 | + ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, cache entries will be flushed instead of deleted/invalidated.') |
|
35 | + ->setHelp(<<<'EOT' |
|
36 | 36 | The <info>%command.name%</info> command is meant to clear the metadata cache of associated Entity Manager. |
37 | 37 | It is possible to invalidate all cache entries at once - called delete -, or flushes the cache provider |
38 | 38 | instance completely. |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | Finally, be aware that if <info>--flush</info> option is passed, not all cache providers are able to flush entries, |
50 | 50 | because of a limitation of its execution nature. |
51 | 51 | EOT |
52 | - ); |
|
52 | + ); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
@@ -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\ClearCache; |
6 | 6 |
@@ -27,11 +27,11 @@ discard block |
||
27 | 27 | protected function configure() |
28 | 28 | { |
29 | 29 | $this->setName('orm:clear-cache:region:query') |
30 | - ->setDescription('Clear a second-level cache query region') |
|
31 | - ->addArgument('region-name', InputArgument::OPTIONAL, 'The query region to clear.') |
|
32 | - ->addOption('all', null, InputOption::VALUE_NONE, 'If defined, all query regions will be deleted/invalidated.') |
|
33 | - ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, all cache entries will be flushed.') |
|
34 | - ->setHelp(<<<'EOT' |
|
30 | + ->setDescription('Clear a second-level cache query region') |
|
31 | + ->addArgument('region-name', InputArgument::OPTIONAL, 'The query region to clear.') |
|
32 | + ->addOption('all', null, InputOption::VALUE_NONE, 'If defined, all query regions will be deleted/invalidated.') |
|
33 | + ->addOption('flush', null, InputOption::VALUE_NONE, 'If defined, all cache entries will be flushed.') |
|
34 | + ->setHelp(<<<'EOT' |
|
35 | 35 | The <info>%command.name%</info> command is meant to clear a second-level cache query region for an associated Entity Manager. |
36 | 36 | It is possible to delete/invalidate all query region, a specific query region or flushes the cache provider. |
37 | 37 | |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | Finally, be aware that if <info>--flush</info> option is passed, |
56 | 56 | not all cache providers are able to flush entries, because of a limitation of its execution nature. |
57 | 57 | EOT |
58 | - ); |
|
58 | + ); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |