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

27 lines
772 B
PHP
Raw Normal View History

2015-07-21 19:38:42 +00:00
<?php
2018-05-09 22:24:08 +00:00
use FormatTalksBundle\SculpinFormatTalksBundle;
2016-06-13 22:35:48 +00:00
use Opdavies\Sculpin\Bundle\ContentGeneratorBundle\SculpinContentGeneratorBundle;
use Opdavies\Sculpin\Bundle\GistEmbedBundle\SculpinGistEmbedBundle;
2017-03-18 10:45:21 +00:00
use Opdavies\Sculpin\Bundle\TwigMarkdownBundle\SculpinTwigMarkdownBundle;
2015-07-28 19:25:52 +00:00
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
use TalksBundle\SculpinTalksBundle;
2018-07-25 21:44:11 +00:00
use WebsiteBundle\SculpinWebsiteBundle;
2015-07-28 19:25:52 +00:00
class SculpinKernel extends AbstractKernel
2015-07-21 19:38:42 +00:00
{
2016-02-14 00:54:27 +00:00
/**
* {@inheritdoc}
*/
2015-07-21 19:38:42 +00:00
protected function getAdditionalSculpinBundles()
{
return [
2016-06-13 22:35:48 +00:00
SculpinContentGeneratorBundle::class,
SculpinGistEmbedBundle::class,
2017-03-18 10:45:21 +00:00
SculpinTwigMarkdownBundle::class,
2018-05-09 22:24:08 +00:00
SculpinTalksBundle::class,
];
2015-07-21 19:38:42 +00:00
}
}