<?php
declare(strict_types=1);
namespace App\Bundles\LaboratoryBundle;
use App\Bundles\LaboratoryBundle\DBAL\LaboratoryRequest\ActionType;
use App\Bundles\LaboratoryBundle\DBAL\LaboratoryRequest\EntityType;
use App\Bundles\LaboratoryBundle\DBAL\LaboratoryRequest\StatusType;
use App\Platform\Bundle\PlatformBundle;
use Doctrine\DBAL\Exception;
class LaboratoryBundle extends PlatformBundle
{
/**
* @throws Exception
*/
public function boot(): void
{
$this->addCustomDBALType(EntityType::NAME, EntityType::class);
$this->addCustomDBALType(StatusType::NAME, StatusType::class);
$this->addCustomDBALType(ActionType::NAME, ActionType::class);
}
}