You are here

protected function XmlDescriptor::describeInputArgument in Zircon Profile 8.0

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

Describes an InputArgument instance.

Parameters

InputArgument $argument:

array $options:

Return value

string|mixed

Overrides Descriptor::describeInputArgument

File

vendor/symfony/console/Descriptor/XmlDescriptor.php, line 136

Class

XmlDescriptor
XML descriptor.

Namespace

Symfony\Component\Console\Descriptor

Code

protected function describeInputArgument(InputArgument $argument, array $options = array()) {
  $this
    ->writeDocument($this
    ->getInputArgumentDocument($argument));
}