mirror of
https://github.com/doctrine/doctrine-website.git
synced 2026-03-23 22:32:11 +01:00
17 lines
335 B
PHP
17 lines
335 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
|
|
|
|
class SculpinKernel extends AbstractKernel
|
|
{
|
|
/**
|
|
* @return string[]
|
|
*/
|
|
protected function getAdditionalSculpinBundles() : array
|
|
{
|
|
return ['Doctrine\Website\DoctrineSculpinBundle\DoctrineSculpinBundle'];
|
|
}
|
|
}
|