oliverdavies.uk/app/SculpinKernel.php

22 lines
515 B
PHP

<?php
declare(strict_types=1);
use Opdavies\Sculpin\Bundle\GistEmbedBundle\SculpinGistEmbedBundle;
use Opdavies\Sculpin\Bundle\TwigMarkdownBundle\SculpinTwigMarkdownBundle;
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
final class SculpinKernel extends AbstractKernel
{
/**
* {@inheritdoc}
*/
protected function getAdditionalSculpinBundles(): array
{
return [
SculpinGistEmbedBundle::class,
SculpinTwigMarkdownBundle::class,
];
}
}