Completed
Push — master ( 5bd517...c7b86e )
by Tomáš
08:52
created
src/Utils/FilesystemChecker.php 1 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
 /*
6 6
  * This file is part of Symplify
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
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
             );
Please login to merge, or discard this patch.
src/Source/SourceFileFilter/RenderableSourceFilter.php 1 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
 /*
6 6
  * This file is part of Symplify
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
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
 
Please login to merge, or discard this patch.