19 lines
477 B
PHP
19 lines
477 B
PHP
<?php
|
|
|
|
use Homepage\HtmlPrettierBundle\HtmlPrettierBundle;
|
|
use Homepage\SiteMapBundle\SiteMapBundle;
|
|
use Homepage\TwigExtensionBundle\TwigExtensionBundle;
|
|
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
|
|
|
|
class SculpinKernel extends AbstractKernel
|
|
{
|
|
protected function getAdditionalSculpinBundles(): array
|
|
{
|
|
return [
|
|
TwigExtensionBundle::class,
|
|
SiteMapBundle::class,
|
|
HtmlPrettierBundle::class,
|
|
];
|
|
}
|
|
}
|