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