vendor/php-flasher/flasher-symfony/Bridge/FlasherBundle.php line 17

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;
  7. use Symfony\Component\DependencyInjection\ContainerBuilder;
  8. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  9. $class Bridge::isLegacy()
  10.     ? 'Flasher\Symfony\Bridge\Legacy\FlasherBundle'
  11.     'Flasher\Symfony\Bridge\Typed\FlasherBundle';
  12. class_alias($class'Flasher\Symfony\Bridge\FlasherBundle');
  13. if (false) { /** @phpstan-ignore-line */
  14.     abstract class FlasherBundle
  15.     {
  16.         /**
  17.          * @return void
  18.          *
  19.          * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  20.          */
  21.         abstract protected function flasherBuild(ContainerBuilder $container);
  22.         /**
  23.          * @return ?ExtensionInterface
  24.          */
  25.         abstract protected function getFlasherContainerExtension();
  26.     }
  27. }