Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 3571324e8fb9c2ddf62cd666a87e3466 > files > 154

php-apc-3.1.15-4.19.mga4.x86_64.rpm

<?php

namespace Symfony\Component\HttpKernel;

use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

interface HttpKernelInterface
{
    const MASTER_REQUEST = 1;
    const SUB_REQUEST = 2;

    public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true);
}