Open Journal Systems  3.3.0
ServerRequestInterface.php
1 <?php
2 
3 namespace Psr\Http\Message;
4 
44 {
54  public function getServerParams();
55 
66  public function getCookieParams();
67 
85  public function withCookieParams(array $cookies);
86 
99  public function getQueryParams();
100 
123  public function withQueryParams(array $query);
124 
137  public function getUploadedFiles();
138 
150  public function withUploadedFiles(array $uploadedFiles);
151 
167  public function getParsedBody();
168 
197  public function withParsedBody($data);
198 
210  public function getAttributes();
211 
227  public function getAttribute($name, $default = null);
228 
244  public function withAttribute($name, $value);
245 
260  public function withoutAttribute($name);
261 }
Psr\Http\Message\ServerRequestInterface\withParsedBody
withParsedBody($data)
Psr\Http\Message\ServerRequestInterface\getParsedBody
getParsedBody()
Psr\Http\Message\RequestInterface
Definition: vendor/psr/http-message/src/RequestInterface.php:24
Psr\Http\Message\ServerRequestInterface\getServerParams
getServerParams()
Psr\Http\Message\ServerRequestInterface
Definition: ServerRequestInterface.php:43
Psr\Http\Message\ServerRequestInterface\getAttributes
getAttributes()
Psr\Http\Message\ServerRequestInterface\withQueryParams
withQueryParams(array $query)
Psr\Http\Message\ServerRequestInterface\withCookieParams
withCookieParams(array $cookies)
Psr\Http\Message\ServerRequestInterface\withoutAttribute
withoutAttribute($name)
Psr\Http\Message\ServerRequestInterface\withUploadedFiles
withUploadedFiles(array $uploadedFiles)
Psr\Http\Message
Definition: vendor/psr/http-message/src/MessageInterface.php:3
Psr\Http\Message\ServerRequestInterface\getCookieParams
getCookieParams()
Psr\Http\Message\ServerRequestInterface\getUploadedFiles
getUploadedFiles()
Psr\Http\Message\ServerRequestInterface\getQueryParams
getQueryParams()
Psr\Http\Message\ServerRequestInterface\withAttribute
withAttribute($name, $value)
Psr\Http\Message\ServerRequestInterface\getAttribute
getAttribute($name, $default=null)