src/Bundles/LocationBundle/LocationBundle.php line 14

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Bundles\LocationBundle;
  4. use App\Bundles\LocationBundle\DBAL\LocationHistoryType;
  5. use App\Bundles\LocationBundle\DBAL\LocationImportFileStatus;
  6. use App\Bundles\LocationBundle\DBAL\LocationType;
  7. use App\Bundles\LocationBundle\DBAL\StreetType;
  8. use App\Platform\Bundle\PlatformBundle;
  9. use Doctrine\DBAL\Exception;
  10. class LocationBundle extends PlatformBundle
  11. {
  12.     /**
  13.      * @throws Exception
  14.      */
  15.     public function boot(): void
  16.     {
  17.         $this->addCustomDBALType(LocationType::NAMELocationType::class);
  18.         $this->addCustomDBALType(LocationHistoryType::NAMELocationHistoryType::class);
  19.         $this->addCustomDBALType(StreetType::NAMEStreetType::class);
  20.         $this->addCustomDBALType(LocationImportFileStatus::NAMELocationImportFileStatus::class);
  21.     }
  22. }