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