Файл: symfony-2.7/src/Symfony/Bundle/FrameworkBundle/Console/Helper/DescriptorHelper.php
Строк: 58
<?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 SymfonyBundleFrameworkBundleConsoleHelper;
use SymfonyBundleFrameworkBundleConsoleDescriptorJsonDescriptor;
use SymfonyBundleFrameworkBundleConsoleDescriptorMarkdownDescriptor;
use SymfonyBundleFrameworkBundleConsoleDescriptorTextDescriptor;
use SymfonyBundleFrameworkBundleConsoleDescriptorXmlDescriptor;
use SymfonyComponentConsoleHelperDescriptorHelper as BaseDescriptorHelper;
/**
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
*
* @internal
*/
class DescriptorHelper extends BaseDescriptorHelper
{
/**
* Constructor.
*/
public function __construct()
{
$this
->register('txt', new TextDescriptor())
->register('xml', new XmlDescriptor())
->register('json', new JsonDescriptor())
->register('md', new MarkdownDescriptor())
;
}
}