function LintCommand::getAvailableFormatOptions
Return value
string[]
1 call to LintCommand::getAvailableFormatOptions()
- LintCommand::complete in vendor/
symfony/ yaml/ Command/ LintCommand.php - Supplies suggestions when resolving possible completion options for input (e.g. option or argument).
File
-
vendor/
symfony/ yaml/ Command/ LintCommand.php, line 273
Class
- LintCommand
- Validates YAML files syntax and outputs encountered errors.
Namespace
Symfony\Component\Yaml\CommandCode
private function getAvailableFormatOptions() : array {
return [
'txt',
'json',
'github',
];
}