public function InputDefinition::getArguments in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Input/InputDefinition.php \Symfony\Component\Console\Input\InputDefinition::getArguments()
Gets the array of InputArgument objects.
Return value
InputArgument[] An array of InputArgument objects
1 call to InputDefinition::getArguments()
- InputDefinition::getSynopsis in vendor/
symfony/ console/ Input/ InputDefinition.php - Gets the synopsis.
File
- vendor/
symfony/ console/ Input/ InputDefinition.php, line 171
Class
- InputDefinition
- A InputDefinition represents a set of valid command line arguments and options.
Namespace
Symfony\Component\Console\InputCode
public function getArguments() {
return $this->arguments;
}