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