oliverdavies.uk/app/SculpinKernel.php

20 lines
395 B
PHP
Raw Normal View History

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