vendor/php-flasher/flasher-symfony/Bridge/Command/FlasherCommand.php line 18

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the PHPFlasher package.
  4.  * (c) Younes KHOUBZA <younes.khoubza@gmail.com>
  5.  */
  6. namespace Flasher\Symfony\Bridge\Command;
  7. use Flasher\Symfony\Bridge\Bridge;
  8. use Symfony\Component\Console\Input\InputInterface;
  9. use Symfony\Component\Console\Output\OutputInterface;
  10. $class Bridge::versionCompare('6.4''>=')
  11.     ? 'Flasher\Symfony\Bridge\Typed\Command\FlasherCommand'
  12.     'Flasher\Symfony\Bridge\Legacy\Command\FlasherCommand';
  13. class_alias($class'Flasher\Symfony\Bridge\Command\FlasherCommand');
  14. if (false) { /** @phpstan-ignore-line */
  15.     abstract class FlasherCommand
  16.     {
  17.         /**
  18.          * @return int
  19.          */
  20.         abstract protected function flasherExecute(InputInterface $inputOutputInterface $output);
  21.     }
  22. }