File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,10 @@ public function constructLink($path)
113
113
*/
114
114
public function getContents ($ filename )
115
115
{
116
- return $ this ->file ($ filename )->getContents ();
116
+ $ file = $ this ->file ($ filename );
117
+ return $ file ->exists ()->then (function () use ($ file ) {
118
+ return $ file ->getContents ();
119
+ });
117
120
}
118
121
119
122
/**
Original file line number Diff line number Diff line change 4
4
5
5
use React \Filesystem \Filesystem ;
6
6
use React \Filesystem \InstantInvoker ;
7
+ use React \Promise \FulfilledPromise ;
7
8
use React \Promise \RejectedPromise ;
8
9
9
10
class FilesystemTest extends TestCase
@@ -67,6 +68,11 @@ public function testDir()
67
68
public function testGetContents ()
68
69
{
69
70
$ adapter = $ this ->mockAdapter ();
71
+ $ adapter
72
+ ->expects ($ this ->any ())
73
+ ->method ('stat ' )
74
+ ->will ($ this ->returnValue (new FulfilledPromise ([])))
75
+ ;
70
76
$ adapter
71
77
->expects ($ this ->any ())
72
78
->method ('open ' )
You can’t perform that action at this time.
0 commit comments