/opt/alt/php55/usr/share/pear/Symfony/Component/Console/Descriptor
NameSizeModeActions
ApplicationDescription.php35130644editdlrm
Descriptor.php35160644editdlrm
DescriptorInterface.php7370644editdlrm
JsonDescriptor.php49810644editdlrm
MarkdownDescriptor.php49100644editdlrm
TextDescriptor.php81840644editdlrm
XmlDescriptor.php97120644editdlrm
Edit: /opt/alt/php55/usr/share/pear/Symfony/Component/Console/Descriptor/DescriptorInterface.php (737B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Descriptor; use Symfony\Component\Console\Output\OutputInterface; /** * Descriptor interface. * * @author Jean-François Simon */ interface DescriptorInterface { /** * Describes an InputArgument instance. * * @param OutputInterface $output * @param object $object * @param array $options */ public function describe(OutputInterface $output, $object, array $options = array()); }