2015-07-21 19:38:42 +00:00
|
|
|
<?php
|
|
|
|
|
2016-06-13 22:35:48 +00:00
|
|
|
use Opdavies\Sculpin\Bundle\ContentGeneratorBundle\SculpinContentGeneratorBundle;
|
|
|
|
use Opdavies\Sculpin\Bundle\GistEmbedBundle\SculpinGistEmbedBundle;
|
2015-07-28 19:25:52 +00:00
|
|
|
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
|
2016-06-13 22:35:48 +00:00
|
|
|
use Tsphethean\Sculpin\Bundle\RelatedPostsBundle\SculpinRelatedPostsBundle;
|
2015-07-28 19:25:52 +00:00
|
|
|
|
2016-02-14 00:54:27 +00:00
|
|
|
/**
|
|
|
|
* Class SculpinKernel
|
|
|
|
*/
|
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()
|
|
|
|
{
|
2016-02-11 20:29:41 +00:00
|
|
|
return [
|
2016-06-13 22:35:48 +00:00
|
|
|
SculpinContentGeneratorBundle::class,
|
|
|
|
SculpinGistEmbedBundle::class,
|
|
|
|
SculpinRelatedPostsBundle::class,
|
2016-02-11 20:29:41 +00:00
|
|
|
];
|
2015-07-21 19:38:42 +00:00
|
|
|
}
|
|
|
|
}
|