web/app.php
author ymh <ymh.work@gmail.com>
Wed, 22 Feb 2012 15:52:30 +0100
changeset 71 b01e36991488
parent 0 7f95f8617b0b
permissions -rwxr-xr-x
add headers for public repository release

<?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();