OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
php
/
Symfony
/
Component
/
Console
/
Descriptor
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
π
..
-
07/20/2024 06:32:21 AM
rwxr-xr-x
π
ApplicationDescription.php
3.78 KB
03/05/2018 08:02:01 PM
rw-r--r--
π
Descriptor.php
3.13 KB
03/05/2018 08:02:01 PM
rw-r--r--
π
DescriptorInterface.php
737 bytes
03/05/2018 08:02:01 PM
rw-r--r--
π
JsonDescriptor.php
5.1 KB
03/05/2018 08:02:01 PM
rw-r--r--
π
MarkdownDescriptor.php
5.97 KB
03/05/2018 08:02:01 PM
rw-r--r--
π
TextDescriptor.php
12.14 KB
03/05/2018 08:02:01 PM
rw-r--r--
π
XmlDescriptor.php
9.12 KB
03/05/2018 08:02:01 PM
rw-r--r--
Editing: DescriptorInterface.php
Close
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * 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 <contact@jfsimon.fr> */ interface DescriptorInterface { /** * Describes an InputArgument instance. * * @param OutputInterface $output * @param object $object * @param array $options */ public function describe(OutputInterface $output, $object, array $options = array()); }