You are here

public function Append::handle in Zircon Profile 8

Same name in this branch
  1. 8 vendor/stack/builder/tests/functional/SilexApplicationTest.php \functional\Append::handle()
  2. 8 vendor/stack/builder/tests/unit/Stack/BuilderTest.php \Stack\Append::handle()
Same name and namespace in other branches
  1. 8.0 vendor/stack/builder/tests/functional/SilexApplicationTest.php \functional\Append::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

Response A Response instance

Throws

\Exception When an Exception occurs during processing

Overrides HttpKernelInterface::handle

File

vendor/stack/builder/tests/functional/SilexApplicationTest.php, line 53

Class

Append

Namespace

functional

Code

public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true) {
  $response = clone $this->app
    ->handle($request, $type, $catch);
  $response
    ->setContent($response
    ->getContent() . $this->appendix);
  return $response;
}