@@ -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 |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | { |
16 | 16 | public static function ensureDirectoryExists(string $directory) |
17 | 17 | { |
18 | - if (! is_dir($directory)) { |
|
18 | + if (!is_dir($directory)) { |
|
19 | 19 | throw new MissingDirectoryException( |
20 | 20 | sprintf('Directory "%s" was not found.', $directory) |
21 | 21 | ); |
@@ -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 |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | |
24 | 24 | public function matchesFileSource(SplFileInfo $fileInfo) : bool |
25 | 25 | { |
26 | - if (Strings::contains($fileInfo->getPath(), DIRECTORY_SEPARATOR . '_')) { |
|
26 | + if (Strings::contains($fileInfo->getPath(), DIRECTORY_SEPARATOR.'_')) { |
|
27 | 27 | return false; |
28 | 28 | } |
29 | 29 |