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.
1 parent 8e7103a commit cb59aa6Copy full SHA for cb59aa6
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