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