public function Command::ignoreValidationErrors in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Command/Command.php \Symfony\Component\Console\Command\Command::ignoreValidationErrors()
Ignores validation errors.
This is mainly useful for the help command.
1 call to Command::ignoreValidationErrors()
- HelpCommand::configure in vendor/
symfony/ console/ Command/ HelpCommand.php - Configures the current command.
File
- vendor/
symfony/ console/ Command/ Command.php, line 74
Class
- Command
- Base class for all commands.
Namespace
Symfony\Component\Console\CommandCode
public function ignoreValidationErrors() {
$this->ignoreValidationErrors = true;
}