dcbristol-2019-static/app/SculpinKernel.php

16 lines
378 B
PHP

<?php
use App\Schedule\SculpinScheduleBundle;
use App\Speakers\SculpinSpeakersBundle;
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
class SculpinKernel extends AbstractKernel
{
protected function getAdditionalSculpinBundles(): array
{
return [
SculpinScheduleBundle::class,
SculpinSpeakersBundle::class,
];
}
}