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