This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/app/SculpinKernel.php
2019-04-10 17:01:32 +01:00

27 lines
779 B
PHP

<?php
use FormatTalksBundle\SculpinFormatTalksBundle;
use Opdavies\Sculpin\Bundle\ContentGeneratorBundle\SculpinContentGeneratorBundle;
use Opdavies\Sculpin\Bundle\GistEmbedBundle\SculpinGistEmbedBundle;
use Opdavies\Sculpin\Bundle\TwigMarkdownBundle\SculpinTwigMarkdownBundle;
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
use TalksBundle\SculpinTalksBundle;
use WebsiteBundle\SculpinWebsiteBundle;
class SculpinKernel extends AbstractKernel
{
/**
* {@inheritdoc}
*/
protected function getAdditionalSculpinBundles(): array
{
return [
SculpinContentGeneratorBundle::class,
SculpinGistEmbedBundle::class,
SculpinTwigMarkdownBundle::class,
SculpinTalksBundle::class,
];
}
}