src/Bundles/PopulationBundle/PopulationBundle.php line 13

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Bundles\PopulationBundle;
  4. use App\Bundles\PopulationBundle\DBAL\HistoricalStatisticType;
  5. use App\Bundles\PopulationBundle\DBAL\PopulationGender;
  6. use App\Bundles\PopulationBundle\DBAL\PopulationListGroupType;
  7. use App\Bundles\PopulationBundle\DBAL\PopulationListType;
  8. use App\Platform\Bundle\PlatformBundle;
  9. class PopulationBundle extends PlatformBundle
  10. {
  11.     public function boot(): void
  12.     {
  13.         $this->addCustomDBALType(PopulationListGroupType::NAMEPopulationListGroupType::class);
  14.         $this->addCustomDBALType(PopulationListType::NAMEPopulationListType::class);
  15.         $this->addCustomDBALType(PopulationGender::NAMEPopulationGender::class);
  16.         $this->addCustomDBALType(HistoricalStatisticType::NAMEHistoricalStatisticType::class);
  17.     }
  18. }