<?php
declare(strict_types=1);
namespace App\Bundles\AntibioticResistanceBundle;
use App\Bundles\AntibioticResistanceBundle\DBAL\InfectionControlBlockType;
use App\Bundles\AntibioticResistanceBundle\DBAL\InfectionControlCaseType;
use App\Bundles\AntibioticResistanceBundle\DBAL\InfectionControlExperimentType;
use App\Bundles\AntibioticResistanceBundle\DBAL\PathogenGroupType;
use App\Platform\Bundle\PlatformBundle;
class AntibioticResistanceBundle extends PlatformBundle
{
public function boot(): void
{
$this->addCustomDBALType(InfectionControlBlockType::NAME, InfectionControlBlockType::class);
$this->addCustomDBALType(InfectionControlCaseType::NAME, InfectionControlCaseType::class);
$this->addCustomDBALType(InfectionControlExperimentType::NAME, InfectionControlExperimentType::class);
$this->addCustomDBALType(PathogenGroupType::NAME, PathogenGroupType::class);
}
}