<?php
declare(strict_types=1);
namespace App\Bundles\AttomBundle;
use App\Bundles\AttomBundle\DBAL\FileType;
use App\Platform\Bundle\PlatformBundle;
use Doctrine\DBAL\Exception;
class AttomBundle extends PlatformBundle
{
/**
* @throws Exception
*/
public function boot(): void
{
$this->addCustomDBALType(FileType::NAME, FileType::class);
}
}