You are here

public function Input::getArguments 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::getArguments()

Returns the argument values.

Return value

array An array of argument values

Overrides InputInterface::getArguments

File

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

Class

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

Namespace

Symfony\Component\Console\Input

Code

public function getArguments() {
  return array_merge($this->definition
    ->getArgumentDefaults(), $this->arguments);
}