public function FunctionsTest::testOpensFilesSuccessfully in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/tests/FunctionsTest.php \GuzzleHttp\Tests\Psr7\FunctionsTest::testOpensFilesSuccessfully()
File
- vendor/
guzzlehttp/ psr7/ tests/ FunctionsTest.php, line 132
Class
Namespace
GuzzleHttp\Tests\Psr7Code
public function testOpensFilesSuccessfully() {
$r = Psr7\try_fopen(__FILE__, 'r');
$this
->assertInternalType('resource', $r);
fclose($r);
}