public function InputOption::getDefault in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Input/InputOption.php \Symfony\Component\Console\Input\InputOption::getDefault()
Returns the default value.
Return value
mixed The default value
1 call to InputOption::getDefault()
- InputOption::equals in vendor/
symfony/ console/ Input/ InputOption.php - Checks whether the given option equals this one.
File
- vendor/
symfony/ console/ Input/ InputOption.php, line 177
Class
- InputOption
- Represents a command line option.
Namespace
Symfony\Component\Console\InputCode
public function getDefault() {
return $this->default;
}