mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
15 lines
494 B
PHP
15 lines
494 B
PHP
<?php
|
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
require __DIR__.'/../vendor/autoload.php';
|
|
|
|
$kernel = new AppKernel('prod', false);
|
|
//$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);
|