Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 2c1f851d499b346aae13de01c6f75c3d > files > 154

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