ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ResponseHandler.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Test;
22 
26 
28 {
29  public function __construct(
30  private readonly HttpService $http,
31  ) {
32  }
33 
37  public function sendAsync(mixed $response): void
38  {
39  if (is_string($response)) {
40  $response = Streams::ofString($response);
41  } elseif (is_resource($response)) {
42  $response = Streams::ofResource($response);
43  }
44 
45  $this->http->saveResponse(
46  $this->http->response()->withBody($response)
47  );
48  $this->http->sendResponse();
49  $this->http->close();
50  }
51 }
$response
Definition: xapitoken.php:93
$http
Definition: deliver.php:30
static ofResource($resource)
Wraps an already created resource with the stream abstraction.
Definition: Streams.php:64
static http()
Fetches the global http state from ILIAS.
static ofString(string $string)
Creates a new stream with an initial value.
Definition: Streams.php:41
__construct(private readonly HttpService $http,)