This repository has been archived on 2025-09-29. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/app/SculpinKernel.php

16 lines
No EOL
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,
];
}
}