mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
21 lines
656 B
PHP
Executable File
21 lines
656 B
PHP
Executable File
<?php
|
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
/** @var \Composer\Autoload\ClassLoader $loader */
|
|
$loader = require __DIR__.'/../app/autoload.php';
|
|
include_once __DIR__.'/../var/bootstrap.php.cache';
|
|
|
|
$env = require 'env.php';
|
|
|
|
$kernel = new AppKernel($env, false);
|
|
$kernel->loadClassCache();
|
|
//$kernel = new AppCache($kernel);
|
|
|
|
// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter
|
|
//Request::enableHttpMethodParameterOverride();
|
|
$request = Request::createFromGlobals();
|
|
$response = $kernel->handle($request);
|
|
$response->send();
|
|
$kernel->terminate($request, $response);
|