src/Bundles/CommandHistoryBundle/CommandHistoryBundle.php line 11

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Bundles\CommandHistoryBundle;
  4. use App\Bundles\CommandHistoryBundle\DBAL\CommandNameType;
  5. use App\Bundles\CommandHistoryBundle\DBAL\CommandStatusType;
  6. use App\Platform\Bundle\PlatformBundle;
  7. class CommandHistoryBundle extends PlatformBundle
  8. {
  9.     public function boot(): void
  10.     {
  11.         $this->addCustomDBALType(CommandNameType::NAMECommandNameType::class);
  12.         $this->addCustomDBALType(CommandStatusType::NAMECommandStatusType::class);
  13.     }
  14. }