dcbristol-2019-static/app/SculpinKernel.php

14 lines
296 B
PHP

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