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