public static function MimeTypeTest::tearDownAfterClass

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/MimeType/MimeTypeTest.php, line 97

Class

MimeTypeTest

Namespace

Symfony\Component\HttpFoundation\Tests\File

Code

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