public function tearDown()
 {
     $_SERVER = $this->_SERVER;
     // Reset environmental variables.
     putenv("SERVER_SOFTWARE=");
     putenv("HTTP_HOST=");
     parent::tearDown();
 }
Exemplo n.º 2
0
 public function tearDown()
 {
     $_SERVER = $this->_SERVER;
     parent::tearDown();
 }
Exemplo n.º 3
0
 public function tearDown()
 {
     putenv('AUTH_DOMAIN');
     parent::tearDown();
 }
Exemplo n.º 4
0
 public function tearDown()
 {
     $_SERVER = $this->_SERVER;
     // Reset environmental variables.
     putenv("SERVER_SOFTWARE=");
     putenv("HTTP_HOST=");
     // Verify that there's no expected calls remaining.
     $this->assertEquals([], $GLOBALS['expected_apc_fetch_calls']);
     $this->assertEquals([], $GLOBALS['expected_apc_store_calls']);
     parent::tearDown();
 }