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.
This works:
While this does not:
Instead of returning def, it returns the information about the request.