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