for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PhpLightning;
use Gacela\Framework\Bootstrap\GacelaConfig;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
final class Kernel extends BaseKernel
{
use MicroKernelTrait;
Symfony\Bundle\Framework...Kernel\MicroKernelTrait
$instanceof
PhpLightning\Kernel
public function gacelaConfigFn(): callable
return static function (GacelaConfig $config): void {
$config->addAppConfig('lightning-config.dist.php', 'lightning-config.php');
$config->setFileCacheEnabled(true);
};
}