src/Bundles/AntibioticResistanceBundle/AntibioticResistanceBundle.php line 14

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Bundles\AntibioticResistanceBundle;
  4. use App\Bundles\AntibioticResistanceBundle\DBAL\InfectionControlBlockType;
  5. use App\Bundles\AntibioticResistanceBundle\DBAL\InfectionControlCaseType;
  6. use App\Bundles\AntibioticResistanceBundle\DBAL\InfectionControlExperimentType;
  7. use App\Bundles\AntibioticResistanceBundle\DBAL\InfectionControlIohvTherapyType;
  8. use App\Bundles\AntibioticResistanceBundle\DBAL\PathogenGroupType;
  9. use App\Platform\Bundle\PlatformBundle;
  10. class AntibioticResistanceBundle extends PlatformBundle
  11. {
  12.     public function boot(): void
  13.     {
  14.         $this->addCustomDBALType(InfectionControlBlockType::NAMEInfectionControlBlockType::class);
  15.         $this->addCustomDBALType(InfectionControlCaseType::NAMEInfectionControlCaseType::class);
  16.         $this->addCustomDBALType(InfectionControlExperimentType::NAMEInfectionControlExperimentType::class);
  17.         $this->addCustomDBALType(PathogenGroupType::NAMEPathogenGroupType::class);
  18.         $this->addCustomDBALType(InfectionControlIohvTherapyType::NAMEInfectionControlIohvTherapyType::class);
  19.     }
  20. }