gnu-social/config/phpstan-bootstrap.php

10 lines
161 B
PHP
Raw Normal View History

<?php
require_once 'bootstrap.php';
use App\Kernel;
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$kernel->boot();
return $kernel;