mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 23:56:29 +03:00
14 lines
329 B
PHP
Executable File
14 lines
329 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
use App\Kernel;
|
|
use PHPStreamServer\Symfony\PHPStreamServerRuntime;
|
|
|
|
$_SERVER['APP_RUNTIME'] = PHPStreamServerRuntime::class;
|
|
|
|
require_once \dirname(__DIR__).'/vendor/autoload_runtime.php';
|
|
|
|
return function (array $context) {
|
|
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
|
|
};
|