Tidy SculpinKernel.php

This commit is contained in:
Oliver Davies 2016-06-13 23:35:48 +01:00
parent 59e3632278
commit 8962870295

View file

@ -1,6 +1,9 @@
<?php <?php
use Opdavies\Sculpin\Bundle\ContentGeneratorBundle\SculpinContentGeneratorBundle;
use Opdavies\Sculpin\Bundle\GistEmbedBundle\SculpinGistEmbedBundle;
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel; use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
use Tsphethean\Sculpin\Bundle\RelatedPostsBundle\SculpinRelatedPostsBundle;
/** /**
* Class SculpinKernel * Class SculpinKernel
@ -13,9 +16,9 @@ class SculpinKernel extends AbstractKernel
protected function getAdditionalSculpinBundles() protected function getAdditionalSculpinBundles()
{ {
return [ return [
'Tsphethean\Sculpin\Bundle\RelatedPostsBundle\SculpinRelatedPostsBundle', SculpinContentGeneratorBundle::class,
'Opdavies\Sculpin\Bundle\ContentGeneratorBundle\SculpinContentGeneratorBundle', SculpinGistEmbedBundle::class,
'Opdavies\Sculpin\Bundle\GistEmbedBundle\SculpinGistEmbedBundle', SculpinRelatedPostsBundle::class,
]; ];
} }
} }