mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireSync.git
synced 2026-05-30 23:44:03 +08:00
* chore: add friendsofphp/php-cs-fixer * chore: run make fix * ci: add style check as first test action * chore: use .cache dir for phpunit
9 lines
201 B
PHP
9 lines
201 B
PHP
<?php
|
|
|
|
use App\Kernel;
|
|
|
|
require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
|
|
|
|
return function (array $context) {
|
|
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
|
|
};
|