src/Bundles/NotificationBundle/NotificationBundle.php line 11

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Bundles\NotificationBundle;
  4. use App\Bundles\NotificationBundle\DBAL\NotificationType;
  5. use App\Platform\Bundle\PlatformBundle;
  6. use Doctrine\DBAL\Exception;
  7. class NotificationBundle extends PlatformBundle
  8. {
  9.     /**
  10.      * @throws Exception
  11.      */
  12.     public function boot(): void
  13.     {
  14.         $this->addCustomDBALType(NotificationType::NAMENotificationType::class);
  15.     }
  16. }