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