<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
if($_SERVER['REMOTE_ADDR'] == '90.63.222.84')
{
return function (array $context) {
return new Kernel($context['APP_DEV'], (bool) $context['APP_DEBUG']);
};
}
else
{
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
}