123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- namespace Symfony\Component\HttpKernel;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\HttpFoundation\Response;
- interface HttpKernelInterface
- {
- public const MAIN_REQUEST = 1;
- public const SUB_REQUEST = 2;
-
- public const MASTER_REQUEST = self::MAIN_REQUEST;
-
- public function handle(Request $request, int $type = self::MAIN_REQUEST, bool $catch = true);
- }
|