You are here

public static function BinaryFileResponseTest::tearDownAfterClass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Tests/BinaryFileResponseTest.php \Symfony\Component\HttpFoundation\Tests\BinaryFileResponseTest::tearDownAfterClass()

File

vendor/symfony/http-foundation/Tests/BinaryFileResponseTest.php, line 243

Class

BinaryFileResponseTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public static function tearDownAfterClass() {
  $path = __DIR__ . '/../Fixtures/to_delete';
  if (file_exists($path)) {
    @unlink($path);
  }
}