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