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