12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace Symfony\Component\Console\Descriptor;
- use Symfony\Component\Console\Output\OutputInterface;
- interface DescriptorInterface
- {
-
- public function describe(OutputInterface $output, $object, array $options = array());
- }
|