You are here

interface DescriptorInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Descriptor/DescriptorInterface.php \Symfony\Component\Console\Descriptor\DescriptorInterface

Descriptor interface.

@author Jean-François Simon <contact@jfsimon.fr>

Hierarchy

Expanded class hierarchy of DescriptorInterface

All classes that implement DescriptorInterface

1 file declares its use of DescriptorInterface
DescriptorHelper.php in vendor/symfony/console/Helper/DescriptorHelper.php

File

vendor/symfony/console/Descriptor/DescriptorInterface.php, line 21

Namespace

Symfony\Component\Console\Descriptor
View source
interface DescriptorInterface {

  /**
   * Describes an InputArgument instance.
   *
   * @param OutputInterface $output
   * @param object          $object
   * @param array           $options
   */
  public function describe(OutputInterface $output, $object, array $options = array());

}

Members

Namesort descending Modifiers Type Description Overrides
DescriptorInterface::describe public function Describes an InputArgument instance. 1