vendor/php-flasher/flasher-toastr-symfony/FlasherToastrSymfonyBundle.php line 13

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\Toastr\Symfony;
  7. use Flasher\Symfony\Support\Bundle;
  8. use Flasher\Toastr\Prime\ToastrPlugin;
  9. final class FlasherToastrSymfonyBundle extends Bundle // Symfony\Component\HttpKernel\Bundle\Bundle
  10. {
  11.     /**
  12.      * {@inheritdoc}
  13.      */
  14.     public function createPlugin()
  15.     {
  16.         return new ToastrPlugin();
  17.     }
  18. }