public function TestKernel::handle in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Tests/EventListener/ExceptionListenerTest.php \Symfony\Component\HttpKernel\Tests\EventListener\TestKernel::handle()
Handles a Request to convert it to a Response.
When $catch is true, the implementation must catch all exceptions and do its best to convert them to a Response instance.
Parameters
Request $request A Request instance:
int $type The type of the request: (one of HttpKernelInterface::MASTER_REQUEST or HttpKernelInterface::SUB_REQUEST)
bool $catch Whether to catch exceptions or not:
Return value
Throws
\Exception When an Exception occurs during processing
Overrides HttpKernelInterface::handle
File
- vendor/
symfony/ http-kernel/ Tests/ EventListener/ ExceptionListenerTest.php, line 134
Class
Namespace
Symfony\Component\HttpKernel\Tests\EventListenerCode
public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true) {
return new Response('foo');
}