You are here

public function Input::getOptions in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Input/Input.php \Symfony\Component\Console\Input\Input::getOptions()

Returns the options values.

Return value

array An array of option values

Overrides InputInterface::getOptions

File

vendor/symfony/console/Input/Input.php, line 170

Class

Input
Input is the base class for all concrete Input classes.

Namespace

Symfony\Component\Console\Input

Code

public function getOptions() {
  return array_merge($this->definition
    ->getOptionDefaults(), $this->options);
}