web/app.php
author ymh <ymh.work@gmail.com>
Thu, 23 Feb 2012 23:02:07 +0100
changeset 72 e50277f02cc1
parent 0 7f95f8617b0b
permissions -rwxr-xr-x
Completion service add the nb of doc + test

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