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