File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ public function testGetMissingLabelException()
133
133
public function testErrorHandler ()
134
134
{
135
135
$ cmd = Command::create ();
136
- $ handler = function () { return 'error-handler ' ; };
136
+ $ handler = function () { return 'error-handler ' ; };
137
137
$ cmd ->setErrorHandler ($ handler );
138
138
139
139
$ this ->assertSame ($ handler , $ cmd ->getErrorHandler ());
Original file line number Diff line number Diff line change @@ -1479,7 +1479,7 @@ public function getContent($asResource = false)
1479
1479
1480
1480
// Content passed in parameter (test)
1481
1481
if (is_string ($ this ->content )) {
1482
- $ resource = fopen ('php://temp ' ,'r+ ' );
1482
+ $ resource = fopen ('php://temp ' , 'r+ ' );
1483
1483
fwrite ($ resource , $ this ->content );
1484
1484
rewind ($ resource );
1485
1485
Original file line number Diff line number Diff line change @@ -934,7 +934,7 @@ public function testGetContentReturnsResourceWhenContentSetInConstructor()
934
934
935
935
public function testContentAsResource ()
936
936
{
937
- $ resource = fopen ('php://memory ' ,'r+ ' );
937
+ $ resource = fopen ('php://memory ' , 'r+ ' );
938
938
fwrite ($ resource , 'My other content ' );
939
939
rewind ($ resource );
940
940
You can’t perform that action at this time.
0 commit comments