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\CommandCode
protected function tearDown() {
foreach ($this->files as $file) {
if (file_exists($file)) {
unlink($file);
}
}
rmdir(sys_get_temp_dir() . '/framework-yml-lint-test');
}