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