dcbristol-2019-static/app/SculpinKernel.php

16 lines
378 B
PHP
Raw Normal View History

2019-05-20 22:40:00 +00:00
<?php
2019-05-23 00:05:29 +00:00
use App\Schedule\SculpinScheduleBundle;
2019-05-20 22:40:00 +00:00
use App\Speakers\SculpinSpeakersBundle;
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
class SculpinKernel extends AbstractKernel
{
protected function getAdditionalSculpinBundles(): array
{
return [
2019-05-23 00:05:29 +00:00
SculpinScheduleBundle::class,
2019-05-20 22:40:00 +00:00
SculpinSpeakersBundle::class,
];
}
}