You are here

public function InputArgument::getName in Zircon Profile 8.0

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

Returns the argument name.

Return value

string The argument name

File

vendor/symfony/console/Input/InputArgument.php, line 60

Class

InputArgument
Represents a command line argument.

Namespace

Symfony\Component\Console\Input

Code

public function getName() {
  return $this->name;
}