Completed
Push — master ( 89c0fb...943241 )
by Paul
01:57
created
src/PHPUnitGenerator/FileSystem/LocalFileSystem.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function mkDir(string $dir)
66 66
     {
67
-        if (! $this->dirExists($dir)) {
67
+        if (!$this->dirExists($dir)) {
68 68
             mkdir($dir, 0755, true);
69 69
         }
70 70
     }
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      */
107 107
     public function read(string $file): string
108 108
     {
109
-        if (! $this->fileExists($file)) {
109
+        if (!$this->fileExists($file)) {
110 110
             throw new FileNotFoundException(sprintf(FileNotFoundException::TEXT, $file));
111 111
         }
112 112
         return file_get_contents($file);
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      */
124 124
     protected function getFilesIterator(string $dir)
125 125
     {
126
-        if (! $this->dirExists($dir)) {
126
+        if (!$this->dirExists($dir)) {
127 127
             throw new DirNotFoundException(sprintf(DirNotFoundException::TEXT, $dir));
128 128
         }
129 129
 
Please login to merge, or discard this patch.