You are here

public function InputOption::getDefault in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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\Input

Code

public function getDefault() {
  return $this->default;
}