Viewing file: FrankenPhpClient.php (1.27 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Laravel\Octane\FrankenPhp;
use Illuminate\Foundation\Application; use Illuminate\Http\Request; use Laravel\Octane\Contracts\Client; use Laravel\Octane\Octane; use Laravel\Octane\OctaneResponse; use Laravel\Octane\RequestContext; use Symfony\Component\HttpFoundation\Response; use Throwable;
class FrankenPhpClient implements Client { /** * Marshal the given request context into an Illuminate request. */ public function marshalRequest(RequestContext $context): array { return [ Request::capture(), $context, ]; }
/** * Send the response to the server. */ public function respond(RequestContext $context, OctaneResponse $octaneResponse): void { $octaneResponse->response->send(); }
/** * Send an error message to the server. */ public function error(Throwable $e, Application $app, Request $request, RequestContext $context): void { $response = new Response( Octane::formatExceptionForClient($e, $app->make('config')->get('app.debug')), 500, [ 'Status' => '500 Internal Server Error', 'Content-Type' => 'text/plain', ], );
$response->send(); } }
|