src/Bundles/SettingsBundle/SettingsBundle.php line 13

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