src/Bundles/PatientBundle/PatientBundle.php line 11

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