src/Bundles/ReportBundle/ReportBundle.php line 10

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Bundles\ReportBundle;
  4. use App\Bundles\ReportBundle\DBAL\ReportType;
  5. use App\Platform\Bundle\PlatformBundle;
  6. class ReportBundle extends PlatformBundle
  7. {
  8.     public function boot(): void
  9.     {
  10.         $this->addCustomDBALType(ReportType::NAMEReportType::class);
  11.     }
  12. }