You are here

protected function LintCommandTest::tearDown in Lockr 7.3

File

vendor/symfony/yaml/Tests/Command/LintCommandTest.php, line 124

Class

LintCommandTest
Tests the YamlLintCommand.

Namespace

Symfony\Component\Yaml\Tests\Command

Code

protected function tearDown() {
  foreach ($this->files as $file) {
    if (file_exists($file)) {
      unlink($file);
    }
  }
  rmdir(sys_get_temp_dir() . '/framework-yml-lint-test');
}