We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8e7103a + cb59aa6 commit fd35a01Copy full SHA for fd35a01
src/StreamIntegrationTest.php
@@ -60,8 +60,9 @@ public function testClose()
60
fwrite($resource, 'abcdef');
61
$stream = $this->createStream($resource);
62
63
+ $this->assertTrue(is_resource($resource));
64
$stream->close();
- $this->assertFalse(@fclose($resource));
65
+ $this->assertFalse(is_resource($resource));
66
}
67
68
public function testDetach()
0 commit comments