Completed
Push — master ( 522585...279d2c )
by Harry
04:14
created
tests/unit/Modify/MakeDirectoryTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
         $directory = new FileNode($fileSystem, 'random/path');
18 18
 
19 19
         $fileSystem->shouldReceive('createDir')
20
-                   ->with($directory->getDirectory(), ['visibility' => 'public'])
21
-                   ->andReturn(false);
20
+                    ->with($directory->getDirectory(), ['visibility' => 'public'])
21
+                    ->andReturn(false);
22 22
         $this->expectException(MakedirectoryFailedException::class);
23 23
 
24 24
         $maker = new MakeDirectory();
Please login to merge, or discard this patch.
tests/unit/Node/FileNodeTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
         $file = new FileNode($fileSystem, 'not/exists');
18 18
 
19 19
         $fileSystem->shouldReceive('has')
20
-                   ->with('not/exists')
21
-                   ->andReturn(false);
20
+                    ->with('not/exists')
21
+                    ->andReturn(false);
22 22
 
23 23
         static::assertEquals([], $file->getContents());
24 24
     }
Please login to merge, or discard this patch.