<?php
declare(strict_types=1);
namespace App\Bundles\LocationBundle;
use App\Bundles\LocationBundle\DBAL\LocationType;
use App\Platform\Bundle\PlatformBundle;
class LocationBundle extends PlatformBundle
{
public function boot(): void
{
$this->addCustomDBALType(LocationType::LOCATION_TYPE, LocationType::class);
}
}