Yaffs site version 1.1
[yaffs-website] / vendor / symfony / console / Tests / Fixtures / DescriptorCommandMbString.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\Console\Tests\Fixtures;
13
14 use Symfony\Component\Console\Command\Command;
15 use Symfony\Component\Console\Input\InputArgument;
16 use Symfony\Component\Console\Input\InputOption;
17
18 class DescriptorCommandMbString extends Command
19 {
20     protected function configure()
21     {
22         $this
23             ->setName('descriptor:åèä')
24             ->setDescription('command åèä description')
25             ->setHelp('command åèä help')
26             ->addUsage('-o|--option_name <argument_name>')
27             ->addUsage('<argument_name>')
28             ->addArgument('argument_åèä', InputArgument::REQUIRED)
29             ->addOption('option_åèä', 'o', InputOption::VALUE_NONE)
30         ;
31     }
32 }