Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / symfony / console / Tests / Fixtures / TestToto.php
1 <?php
2
3 use Symfony\Component\Console\Command\Command;
4 use Symfony\Component\Console\Input\InputInterface;
5 use Symfony\Component\Console\Output\OutputInterface;
6
7 class TestToto extends Command
8 {
9     protected function configure()
10     {
11         $this
12             ->setName('test-toto')
13             ->setDescription('The test-toto command')
14             ->setAliases(array('test'))
15         ;
16     }
17
18     protected function execute(InputInterface $input, OutputInterface $output)
19     {
20         $output->write('test-toto');
21     }
22 }