ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
FigCookieTestingRequest.php
Go to the documentation of this file.
1<?php
2
3namespace 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}
An exception for terminatinating execution or to throw for unit testing.
withRequestTarget($requestTarget)
Return an instance with the specific request-target.
getRequestTarget()
Retrieves the message's request target.
getMethod()
Retrieves the HTTP method of the request.
withMethod($method)
Return an instance with the provided HTTP method.
withUri(UriInterface $uri, $preserveHost=false)
Returns an instance with the provided URI.
Representation of an outgoing, client-side request.
Describes a data stream.
Value object representing a URI.