ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
FigCookieTestingResponse.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Dflydev\FigCookies;
4 
6 
8 {
10 
11  public function getStatusCode()
12  {
13  throw new \RuntimeException("This method has not been implemented.");
14  }
15 
16  public function withStatus($code, $reasonPhrase = '')
17  {
18  throw new \RuntimeException("This method has not been implemented.");
19  }
20 
21  public function getReasonPhrase()
22  {
23  throw new \RuntimeException("This method has not been implemented.");
24  }
25 
26 }
withStatus($code, $reasonPhrase='')
Return an instance with the specified status code and, optionally, reason phrase. ...
getReasonPhrase()
Gets the response reason phrase associated with the status code.
$code
Definition: example_050.php:99
Representation of an outgoing, server-side response.