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;
|
2019-05-20 21:12:34 +00:00
|
|
|
use App\Sponsors\SculpinSponsorsBundle;
|
2019-04-25 20:08:45 +00:00
|
|
|
use Opdavies\Sculpin\Bundle\TwigMarkdownBundle\SculpinTwigMarkdownBundle;
|
2019-05-20 22:40:00 +00:00
|
|
|
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,
|
2019-05-20 21:12:34 +00:00
|
|
|
SculpinSponsorsBundle::class,
|
2019-04-25 20:08:45 +00:00
|
|
|
SculpinTwigMarkdownBundle::class,
|
2019-05-20 22:40:00 +00:00
|
|
|
];
|
|
|
|
}
|
2019-04-25 20:08:45 +00:00
|
|
|
}
|