@@ -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 | /* |
6 | 6 | * This file is part of Symplify |
@@ -84,11 +84,11 @@ discard block |
||
84 | 84 | |
85 | 85 | private function prependLayoutToFileContent(AbstractFile $file) |
86 | 86 | { |
87 | - if (! $file->getLayout()) { |
|
87 | + if (!$file->getLayout()) { |
|
88 | 88 | return; |
89 | 89 | } |
90 | 90 | |
91 | 91 | $layoutLine = sprintf('{layout "%s"}', $file->getLayout()); |
92 | - $file->changeContent($layoutLine . PHP_EOL . PHP_EOL . $file->getContent()); |
|
92 | + $file->changeContent($layoutLine.PHP_EOL.PHP_EOL.$file->getContent()); |
|
93 | 93 | } |
94 | 94 | } |
@@ -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 | /* |
6 | 6 | * This file is part of Symplify |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | |
107 | 107 | private function extractPostRoute(array $options) : array |
108 | 108 | { |
109 | - if (! isset($options['configuration']['postRoute'])) { |
|
109 | + if (!isset($options['configuration']['postRoute'])) { |
|
110 | 110 | return $options; |
111 | 111 | } |
112 | 112 |