src/Bundles/LocationBundle/LocationBundle.php line 10

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