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