Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / http-kernel / Tests / Fixtures / ExtensionPresentBundle / Command / BarCommand.php
1 <?php
2
3 namespace Symfony\Component\HttpKernel\Tests\Fixtures\ExtensionPresentBundle\Command;
4
5 use Symfony\Component\Console\Command\Command;
6
7 /**
8  * This command has a required parameter on the constructor and will be ignored by the default Bundle implementation.
9  *
10  * @see Bundle::registerCommands()
11  */
12 class BarCommand extends Command
13 {
14     public function __construct($example, $name = 'bar')
15     {
16     }
17 }