-
-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Labels
Description
This works:
$url = $this->server->setResponseOfPath("/api/endpoint", new Response('abc' ));
$content = file_get_contents($url);
print_r($content);While this does not:
$url = $this->server->setResponseOfPath("/api/endpoint?with=parameter", new Response('def'));
$content = file_get_contents($url);
print_r($content);Instead of returning def, it returns the information about the request.
Reactions are currently unavailable