$filename =
tempnam(sys_get_temp_dir().'/framework-yml-lint-test', 'sf-'
);
file_put_contents($filename,
$content);
$this->files
[] =
$filename;
return $filename;
} protected function createCommand(): Command
{ $application =
new Application();
$application->
add(new LintCommand());
return $application->
find('lint:yaml'
);
} protected function createCommandTester(): CommandTester
{ return new CommandTester($this->
createCommand());
} protected function setUp(): void
{