Skip to content
Snippets Groups Projects

tuleap-108-add-stricter-code-quality-tools-configuration

6 files
+ 325
1287
Compare changes
  • Side-by-side
  • Inline

Files

+ 11
0
<?php declare(strict_types = 1);
use App\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Dotenv\Dotenv;
require dirname(__DIR__) . '/../vendor/autoload.php';
(new Dotenv())->bootEnv(dirname(__DIR__) . '/../.env');
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
return new Application($kernel);
Loading