signer/backend/public/index.php

11 lines
219 B
PHP
Executable File

<?php
const E_STRICT = 1;
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']);
};