vendor/php-flasher/flasher-sweetalert-symfony/FlasherSweetAlertSymfonyBundle.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\SweetAlert\Symfony;
  7. use Flasher\SweetAlert\Prime\SweetAlertPlugin;
  8. use Flasher\Symfony\Support\Bundle;
  9. class FlasherSweetAlertSymfonyBundle extends Bundle // Symfony\Component\HttpKernel\Bundle\Bundle
  10. {
  11.     /**
  12.      * {@inheritDoc}
  13.      */
  14.     public function createPlugin()
  15.     {
  16.         return new SweetAlertPlugin();
  17.     }
  18. }