src/Bundles/LocationBundle/LocationBundle.php line 11

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\LocationType;
  6. use App\Platform\Bundle\PlatformBundle;
  7. class LocationBundle extends PlatformBundle
  8. {
  9.     public function boot(): void
  10.     {
  11.         $this->addCustomDBALType(LocationType::NAMELocationType::class);
  12.         $this->addCustomDBALType(LocationHistoryType::NAMELocationHistoryType::class);
  13.     }
  14. }