protected function FileBagTest::tearDown in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Tests/FileBagTest.php \Symfony\Component\HttpFoundation\Tests\FileBagTest::tearDown()
File
- vendor/
symfony/ http-foundation/ Tests/ FileBagTest.php, line 140
Class
- FileBagTest
- FileBagTest.
Namespace
Symfony\Component\HttpFoundation\TestsCode
protected function tearDown() {
foreach (glob(sys_get_temp_dir() . '/form_test/*') as $file) {
unlink($file);
}
rmdir(sys_get_temp_dir() . '/form_test');
}