web/app.php
author ymh <ymh.work@gmail.com>
Fri, 04 Nov 2011 15:54:16 +0100
changeset 25 05bf39027817
parent 0 7f95f8617b0b
permissions -rwxr-xr-x
subrepo changed

<?php

require_once __DIR__.'/../app/bootstrap.php.cache';
require_once __DIR__.'/../app/AppKernel.php';
//require_once __DIR__.'/../app/AppCache.php';

use Symfony\Component\HttpFoundation\Request;

$kernel = new AppKernel('prod', false);
$kernel->loadClassCache();
//$kernel = new AppCache($kernel);
$kernel->handle(Request::createFromGlobals())->send();