src/Bundles/ContactBundle/ContactBundle.php line 11

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Bundles\ContactBundle;
  4. use App\Bundles\ContactBundle\DBAL\ContactType;
  5. use App\Bundles\ContactBundle\DBAL\RoleType;
  6. use App\Platform\Bundle\PlatformBundle;
  7. class ContactBundle extends PlatformBundle
  8. {
  9.     public function boot(): void
  10.     {
  11.         $this->addCustomDBALType(ContactType::CONTACT_TYPEContactType::class);
  12.         $this->addCustomDBALType(RoleType::ROLE_TYPERoleType::class);
  13.     }
  14. }