BarCommand.php 412 B

123456789101112131415161718
  1. <?php
  2. namespace Symfony\Component\HttpKernel\Tests\Fixtures\ExtensionPresentBundle\Command;
  3. use Symfony\Component\Console\Command\Command;
  4. /**
  5. * This command has a required parameter on the constructor and will be ignored by the default Bundle implementation.
  6. *
  7. * @see Bundle::registerCommands()
  8. */
  9. class BarCommand extends Command
  10. {
  11. public function __construct($example, $name = 'bar')
  12. {
  13. }
  14. }