protected function EnvParametersResourceTest::tearDown in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Tests/Config/EnvParametersResourceTest.php \Symfony\Component\HttpKernel\Tests\Config\EnvParametersResourceTest::tearDown()
File
- vendor/
symfony/ http-kernel/ Tests/ Config/ EnvParametersResourceTest.php, line 36
Class
Namespace
Symfony\Component\HttpKernel\Tests\ConfigCode
protected function tearDown() {
foreach ($_SERVER as $key => $value) {
if (0 === strpos($key, $this->prefix)) {
unset($_SERVER[$key]);
}
}
}