public function LazyOpenStreamTest::setup in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/tests/LazyOpenStreamTest.php \GuzzleHttp\Tests\Psr7\LazyOpenStreamTest::setup()
File
- vendor/
guzzlehttp/ psr7/ tests/ LazyOpenStreamTest.php, line 10
Class
Namespace
GuzzleHttp\Tests\Psr7Code
public function setup() {
$this->fname = tempnam('/tmp', 'tfile');
if (file_exists($this->fname)) {
unlink($this->fname);
}
}