ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
FigCookieTestingRequest.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Dflydev\FigCookies;
4 
8 
10 {
12 
13  public function getRequestTarget()
14  {
15  throw new \RuntimeException("This method has not been implemented.");
16  }
17 
18  public function withRequestTarget($requestTarget)
19  {
20  throw new \RuntimeException("This method has not been implemented.");
21  }
22 
23  public function getMethod()
24  {
25  throw new \RuntimeException("This method has not been implemented.");
26  }
27 
28  public function withMethod($method)
29  {
30  throw new \RuntimeException("This method has not been implemented.");
31  }
32 
33  public function getUri()
34  {
35  throw new \RuntimeException("This method has not been implemented.");
36  }
37 
38  public function withUri(UriInterface $uri, $preserveHost = false)
39  {
40  throw new \RuntimeException("This method has not been implemented.");
41  }
42 }
getRequestTarget()
Retrieves the message&#39;s request target.
Value object representing a URI.
withRequestTarget($requestTarget)
Return an instance with the specific request-target.
getMethod()
Retrieves the HTTP method of the request.
withMethod($method)
Return an instance with the provided HTTP method.
Representation of an outgoing, client-side request.
withUri(UriInterface $uri, $preserveHost=false)
Returns an instance with the provided URI.