vendor/php-flasher/flasher-notyf-symfony/FlasherNotyfSymfonyBundle.php line 13

  1. <?php
  2. /*
  3.  * This file is part of the PHPFlasher package.
  4.  * (c) Younes KHOUBZA <younes.khoubza@gmail.com>
  5.  */
  6. namespace Flasher\Notyf\Symfony;
  7. use Flasher\Notyf\Prime\NotyfPlugin;
  8. use Flasher\Symfony\Support\Bundle;
  9. class FlasherNotyfSymfonyBundle extends Bundle // Symfony\Component\HttpKernel\Bundle\Bundle
  10. {
  11.     /**
  12.      * {@inheritDoc}
  13.      */
  14.     public function createPlugin()
  15.     {
  16.         return new NotyfPlugin();
  17.     }
  18. }