Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 467e536d4a9438075b4f235b0a64815c > files > 154

php-apc-3.1.15-4.17.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);
}