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

22 lines
488 B
PHP

<?php
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
/**
* Class SculpinKernel
*/
class SculpinKernel extends AbstractKernel
{
/**
* {@inheritdoc}
*/
protected function getAdditionalSculpinBundles()
{
return [
'Tsphethean\Sculpin\Bundle\RelatedPostsBundle\SculpinRelatedPostsBundle',
'Opdavies\Sculpin\Bundle\ContentGeneratorBundle\SculpinContentGeneratorBundle',
'AppBundle\AppBundle'
];
}
}