Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\Console\Descriptor; Chris@0: Chris@0: use Symfony\Component\Console\Output\OutputInterface; Chris@0: Chris@0: /** Chris@0: * Descriptor interface. Chris@0: * Chris@0: * @author Jean-François Simon Chris@0: */ Chris@0: interface DescriptorInterface Chris@0: { Chris@0: /** Chris@14: * Describes an object if supported. Chris@0: * Chris@0: * @param OutputInterface $output Chris@0: * @param object $object Chris@0: * @param array $options Chris@0: */ Chris@17: public function describe(OutputInterface $output, $object, array $options = []); Chris@0: }