Open Journal Systems
3.3.0
|
Static Public Member Functions | |
static | closeOutputBuffers ($targetLevel, $flush) |
static | closeOutputBuffers (int $targetLevel, bool $flush) |
static | create ($content='', $status=200, $headers=[]) |
static | create ($content='', $status=200, $headers=array()) |
Static Public Attributes | |
static | $statusTexts |
Protected Member Functions | |
ensureIEOverSSLCompatibility (Request $request) | |
ensureIEOverSSLCompatibility (Request $request) | |
Protected Attributes | |
$charset | |
$content | |
$statusCode | |
$statusText | |
$version | |
Response represents an HTTP response.
Definition at line 19 of file lib/vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::__construct | ( | $content = '' , |
|
$status = 200 , |
|||
$headers = array() |
|||
) |
Constructor.
mixed | $content | The response content, see setContent() |
int | $status | The response status code |
array | $headers | An array of response headers |
Reimplemented in Symfony\Component\HttpFoundation\RedirectResponse.
Definition at line 216 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$content, Symfony\Component\HttpFoundation\Response\$headers, Symfony\Component\HttpFoundation\Response\setContent(), Symfony\Component\HttpFoundation\Response\setDate(), Symfony\Component\HttpFoundation\Response\setProtocolVersion(), and Symfony\Component\HttpFoundation\Response\setStatusCode().
Symfony\Component\HttpFoundation\Response::__construct | ( | $content = '' , |
|
int | $status = 200 , |
||
array | $headers = [] |
||
) |
Definition at line 220 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$content, Symfony\Component\HttpFoundation\Response\$headers, Symfony\Component\HttpFoundation\Response\setContent(), Symfony\Component\HttpFoundation\Response\setProtocolVersion(), and Symfony\Component\HttpFoundation\Response\setStatusCode().
Symfony\Component\HttpFoundation\Response::__clone | ( | ) |
Clones the current Response instance.
Definition at line 269 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$headers.
Symfony\Component\HttpFoundation\Response::__clone | ( | ) |
Clones the current Response instance.
Definition at line 270 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$headers.
Symfony\Component\HttpFoundation\Response::__toString | ( | ) |
Returns the Response as an HTTP string.
The string representation of the Response is the same as the one that will be sent to the client only if the prepare() method has been called before.
Definition at line 258 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getContent().
Symfony\Component\HttpFoundation\Response::__toString | ( | ) |
Returns the Response as an HTTP string.
The string representation of the Response is the same as the one that will be sent to the client only if the prepare() method has been called before.
Definition at line 259 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getContent().
|
static |
Cleans or flushes output buffers up to target level.
Resulting level can be greater than target level if a non-removable buffer has been encountered.
int | $targetLevel | The target output buffering level |
bool | $flush | Whether to flush or clean the buffers |
@final since version 3.3
Definition at line 1275 of file lib/vendor/symfony/http-foundation/Response.php.
|
static |
Cleans or flushes output buffers up to target level.
Resulting level can be greater than target level if a non-removable buffer has been encountered.
@final
Definition at line 1234 of file vendor/symfony/http-foundation/Response.php.
|
static |
Factory method for chainability.
Example:
return Response::create($body, 200) ->setSharedMaxAge(300);
mixed | $content | The response content, see setContent() |
int | $status | The response status code |
array | $headers | An array of response headers |
Reimplemented in Symfony\Component\HttpFoundation\RedirectResponse, Symfony\Component\HttpFoundation\RedirectResponse, Symfony\Component\HttpFoundation\JsonResponse, Symfony\Component\HttpFoundation\JsonResponse, Symfony\Component\HttpFoundation\StreamedResponse, and Symfony\Component\HttpFoundation\StreamedResponse.
Definition at line 242 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$content, and Symfony\Component\HttpFoundation\Response\$headers.
|
static |
Factory method for chainability.
Example:
return Response::create($body, 200) ->setSharedMaxAge(300);
mixed | $content | The response content, see setContent() |
int | $status | The response status code |
array | $headers | An array of response headers |
Reimplemented in Symfony\Component\HttpFoundation\RedirectResponse, Symfony\Component\HttpFoundation\RedirectResponse, Symfony\Component\HttpFoundation\JsonResponse, Symfony\Component\HttpFoundation\JsonResponse, Symfony\Component\HttpFoundation\StreamedResponse, and Symfony\Component\HttpFoundation\StreamedResponse.
Definition at line 243 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$content, and Symfony\Component\HttpFoundation\Response\$headers.
Referenced by Symfony\Component\HttpFoundation\Tests\ResponseTest\testCreate().
|
protected |
Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9.
@final
Definition at line 1256 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Request\get(), and Symfony\Component\HttpFoundation\Request\isSecure().
|
protected |
Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9.
@final since version 3.3
Definition at line 1298 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Request\get(), and Symfony\Component\HttpFoundation\Request\isSecure().
Referenced by Symfony\Component\HttpFoundation\BinaryFileResponse\prepare(), and Symfony\Component\HttpFoundation\Response\prepare().
Symfony\Component\HttpFoundation\Response::expire | ( | ) |
Marks the response stale by setting the Age header to be equal to the maximum age of the response.
Definition at line 718 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getMaxAge(), and Symfony\Component\HttpFoundation\Response\isFresh().
Symfony\Component\HttpFoundation\Response::expire | ( | ) |
Marks the response stale by setting the Age header to be equal to the maximum age of the response.
Definition at line 719 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getMaxAge(), and Symfony\Component\HttpFoundation\Response\isFresh().
Symfony\Component\HttpFoundation\Response::getAge | ( | ) |
Returns the age of the response in seconds.
@final
Definition at line 704 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getDate().
Symfony\Component\HttpFoundation\Response::getAge | ( | ) |
Returns the age of the response.
@final since version 3.2
Definition at line 705 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getDate().
Referenced by Symfony\Component\HttpFoundation\Response\getTtl(), Symfony\Component\HttpFoundation\Response\setClientTtl(), and Symfony\Component\HttpFoundation\Response\setTtl().
Symfony\Component\HttpFoundation\Response::getCharset | ( | ) |
Retrieves the response charset.
@final
Definition at line 531 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$charset.
Symfony\Component\HttpFoundation\Response::getCharset | ( | ) |
Retrieves the response charset.
@final since version 3.2
Definition at line 547 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$charset.
Symfony\Component\HttpFoundation\Response::getContent | ( | ) |
Gets the current response content.
Reimplemented in Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\StreamedResponse, and Symfony\Component\HttpFoundation\StreamedResponse.
Definition at line 437 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$content.
Symfony\Component\HttpFoundation\Response::getContent | ( | ) |
Gets the current response content.
Reimplemented in Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\StreamedResponse, and Symfony\Component\HttpFoundation\StreamedResponse.
Definition at line 440 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$content.
Referenced by Symfony\Component\HttpFoundation\Response\__toString().
Symfony\Component\HttpFoundation\Response::getDate | ( | ) |
Returns the Date header as a DateTime instance.
Reimplemented in Symfony\Component\HttpFoundation\Tests\ExtendedResponse.
Definition at line 667 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\setDate().
Referenced by Symfony\Component\HttpFoundation\Response\getAge(), and Symfony\Component\HttpFoundation\Response\getMaxAge().
Symfony\Component\HttpFoundation\Response::getDate | ( | ) |
Returns the Date header as a DateTime instance.
Reimplemented in Symfony\Component\HttpFoundation\Tests\ExtendedResponse.
Definition at line 675 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::getEtag | ( | ) |
Returns the literal value of the ETag HTTP header.
@final
Definition at line 922 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::getEtag | ( | ) |
Returns the literal value of the ETag HTTP header.
@final since version 3.2
Definition at line 932 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\isNotModified().
Symfony\Component\HttpFoundation\Response::getExpires | ( | ) |
Returns the value of the Expires header as a DateTime instance.
@final
Definition at line 733 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::getExpires | ( | ) |
Returns the value of the Expires header as a DateTime instance.
@final since version 3.2
Definition at line 735 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\getMaxAge().
Symfony\Component\HttpFoundation\Response::getLastModified | ( | ) |
Returns the Last-Modified HTTP header as a DateTime instance.
Definition at line 885 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::getLastModified | ( | ) |
Returns the Last-Modified HTTP header as a DateTime instance.
Definition at line 896 of file lib/vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::getMaxAge | ( | ) |
Returns the number of seconds after the time specified in the response's Date header when the response should no longer be considered fresh.
First, it checks for a s-maxage directive, then a max-age directive, and then it falls back on an expires header. It returns null when no maximum age can be established.
@final
Definition at line 779 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getDate(), and Symfony\Component\HttpFoundation\Response\getExpires().
Symfony\Component\HttpFoundation\Response::getMaxAge | ( | ) |
Returns the number of seconds after the time specified in the response's Date header when the response should no longer be considered fresh.
First, it checks for a s-maxage directive, then a max-age directive, and then it falls back on an expires header. It returns null when no maximum age can be established.
@final since version 3.2
Definition at line 780 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getDate(), and Symfony\Component\HttpFoundation\Response\getExpires().
Referenced by Symfony\Component\HttpFoundation\Response\expire(), and Symfony\Component\HttpFoundation\Response\getTtl().
Symfony\Component\HttpFoundation\Response::getProtocolVersion | ( | ) |
Gets the HTTP protocol version.
@final
Definition at line 461 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$version.
Symfony\Component\HttpFoundation\Response::getProtocolVersion | ( | ) |
Gets the HTTP protocol version.
@final since version 3.2
Definition at line 468 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$version.
Referenced by Symfony\Component\HttpFoundation\Response\prepare().
Symfony\Component\HttpFoundation\Response::getStatusCode | ( | ) |
Retrieves the status code for the current web response.
@final
Definition at line 507 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$statusCode.
Symfony\Component\HttpFoundation\Response::getStatusCode | ( | ) |
Retrieves the status code for the current web response.
@final since version 3.2
Definition at line 519 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$statusCode.
Symfony\Component\HttpFoundation\Response::getTtl | ( | ) |
Returns the response's time-to-live in seconds.
It returns null when no freshness information is present in the response.
When the responses TTL is <= 0, the response may not be served from cache without first revalidating with the origin.
@final
Definition at line 839 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getAge(), and Symfony\Component\HttpFoundation\Response\getMaxAge().
Symfony\Component\HttpFoundation\Response::getTtl | ( | ) |
Returns the response's time-to-live in seconds.
It returns null when no freshness information is present in the response.
When the responses TTL is <= 0, the response may not be served from cache without first revalidating with the origin.
@final since version 3.2
Definition at line 844 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getAge(), and Symfony\Component\HttpFoundation\Response\getMaxAge().
Referenced by Symfony\Component\HttpFoundation\Response\isFresh().
Symfony\Component\HttpFoundation\Response::getVary | ( | ) |
Returns an array of header names given in the Vary header.
@final
Definition at line 1048 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::getVary | ( | ) |
Returns an array of header names given in the Vary header.
@final since version 3.2
Definition at line 1060 of file lib/vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::hasVary | ( | ) |
Returns true if the response includes a Vary header.
@final
Definition at line 1038 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::hasVary | ( | ) |
Returns true if the response includes a Vary header.
@final since version 3.2
Definition at line 1048 of file lib/vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isCacheable | ( | ) |
Returns true if the response may safely be kept in a shared (surrogate) cache.
Responses marked "private" with an explicit Cache-Control directive are considered uncacheable.
Responses with neither a freshness lifetime (Expires, max-age) nor cache validator (Last-Modified, ETag) are considered uncacheable because there is no way to tell when or how to remove them from the cache.
Note that RFC 7231 and RFC 7234 possibly allow for a more permissive implementation, for example "status codes that are defined as cacheable by default [...] can be reused by a cache with heuristic expiration unless otherwise indicated" (https://tools.ietf.org/html/rfc7231#section-6.1)
@final
Definition at line 553 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\isFresh(), and Symfony\Component\HttpFoundation\Response\isValidateable().
Symfony\Component\HttpFoundation\Response::isCacheable | ( | ) |
Returns true if the response is worth caching under any circumstance.
Responses marked "private" with an explicit Cache-Control directive are considered uncacheable.
Responses with neither a freshness lifetime (Expires, max-age) nor cache validator (Last-Modified, ETag) are considered uncacheable.
@final since version 3.3
Definition at line 565 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\isFresh(), and Symfony\Component\HttpFoundation\Response\isValidateable().
Symfony\Component\HttpFoundation\Response::isClientError | ( | ) |
Is there a client error?
@final
Definition at line 1162 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isClientError | ( | ) |
Is there a client error?
@final since version 3.2
Definition at line 1186 of file lib/vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isEmpty | ( | ) |
Is the response empty?
@final
Definition at line 1222 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isEmpty | ( | ) |
Is the response empty?
@final since version 3.2
Definition at line 1260 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\prepare().
Symfony\Component\HttpFoundation\Response::isForbidden | ( | ) |
Is the response forbidden?
@final
Definition at line 1192 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$statusCode.
Symfony\Component\HttpFoundation\Response::isForbidden | ( | ) |
Is the response forbidden?
@final since version 3.2
Definition at line 1222 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$statusCode.
Symfony\Component\HttpFoundation\Response::isFresh | ( | ) |
Returns true if the response is "fresh".
Fresh responses may be served from cache without any interaction with the origin. A response is considered fresh when it includes a Cache-Control/max-age indicator or Expires header and the calculated age is less than the freshness lifetime.
@final
Definition at line 575 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getTtl().
Symfony\Component\HttpFoundation\Response::isFresh | ( | ) |
Returns true if the response is "fresh".
Fresh responses may be served from cache without any interaction with the origin. A response is considered fresh when it includes a Cache-Control/max-age indicator or Expires header and the calculated age is less than the freshness lifetime.
@final since version 3.3
Definition at line 589 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getTtl().
Referenced by Symfony\Component\HttpFoundation\Response\expire(), and Symfony\Component\HttpFoundation\Response\isCacheable().
Symfony\Component\HttpFoundation\Response::isImmutable | ( | ) |
Returns true if the response is marked as "immutable".
@final
Definition at line 648 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isInformational | ( | ) |
Is response informative?
@final
Definition at line 1132 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isInformational | ( | ) |
Is response informative?
@final since version 3.3
Definition at line 1150 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\prepare().
Symfony\Component\HttpFoundation\Response::isInvalid | ( | ) |
Is response invalid?
@final
Definition at line 1122 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isInvalid | ( | ) |
Is response invalid?
@final since version 3.2
Definition at line 1138 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\setStatusCode().
Symfony\Component\HttpFoundation\Response::isNotFound | ( | ) |
Is the response a not found error?
@final
Definition at line 1202 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$statusCode.
Symfony\Component\HttpFoundation\Response::isNotFound | ( | ) |
Is the response a not found error?
@final since version 3.2
Definition at line 1234 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$statusCode.
Symfony\Component\HttpFoundation\Response::isNotModified | ( | Request | $request | ) |
Determines if the Response validators (ETag, Last-Modified) match a conditional value specified in the Request.
If the Response is not modified, it sets the status code to 304 and removes the actual content by calling the setNotModified() method.
@final
Definition at line 1090 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Request\get(), Symfony\Component\HttpFoundation\Response\getEtag(), Symfony\Component\HttpFoundation\Request\getETags(), Symfony\Component\HttpFoundation\Request\isMethodCacheable(), and Symfony\Component\HttpFoundation\Response\setNotModified().
Symfony\Component\HttpFoundation\Response::isNotModified | ( | Request | $request | ) |
Determines if the Response validators (ETag, Last-Modified) match a conditional value specified in the Request.
If the Response is not modified, it sets the status code to 304 and removes the actual content by calling the setNotModified() method.
@final since version 3.3
Definition at line 1104 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Request\get(), Symfony\Component\HttpFoundation\Response\getEtag(), Symfony\Component\HttpFoundation\Request\getETags(), Symfony\Component\HttpFoundation\Request\isMethodCacheable(), and Symfony\Component\HttpFoundation\Response\setNotModified().
Symfony\Component\HttpFoundation\Response::isOk | ( | ) |
Is the response OK?
@final
Definition at line 1182 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$statusCode.
Symfony\Component\HttpFoundation\Response::isOk | ( | ) |
Is the response OK?
@final since version 3.2
Definition at line 1210 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$statusCode.
Symfony\Component\HttpFoundation\Response::isRedirect | ( | $location = null | ) |
Is the response a redirect of some form?
string | $location |
@final since version 3.2
Definition at line 1248 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\RedirectResponse\__construct().
Symfony\Component\HttpFoundation\Response::isRedirect | ( | string | $location = null | ) |
Is the response a redirect of some form?
@final
Definition at line 1212 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isRedirection | ( | ) |
Is the response a redirect?
@final
Definition at line 1152 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isRedirection | ( | ) |
Is the response a redirect?
@final since version 3.2
Definition at line 1174 of file lib/vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isServerError | ( | ) |
Was there a server side error?
@final
Definition at line 1172 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isServerError | ( | ) |
Was there a server side error?
@final since version 3.3
Definition at line 1198 of file lib/vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isSuccessful | ( | ) |
Is response successful?
@final
Definition at line 1142 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isSuccessful | ( | ) |
Is response successful?
@final since version 3.2
Definition at line 1162 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\BinaryFileResponse\sendContent().
Symfony\Component\HttpFoundation\Response::isValidateable | ( | ) |
Returns true if the response includes headers that can be used to validate the response with the origin server using a conditional GET request.
@final
Definition at line 586 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::isValidateable | ( | ) |
Returns true if the response includes headers that can be used to validate the response with the origin server using a conditional GET request.
@final since version 3.3
Definition at line 602 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\isCacheable().
Symfony\Component\HttpFoundation\Response::mustRevalidate | ( | ) |
Returns true if the response must be revalidated by caches.
This method indicates that the response must not be served stale by a cache in any circumstance without first revalidating with the origin. When present, the TTL of the response should not be overridden to be greater than the value provided by the origin.
@final since version 3.3
Definition at line 653 of file lib/vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::mustRevalidate | ( | ) |
Returns true if the response must be revalidated by shared caches once it has become stale.
This method indicates that the response must not be served stale by a cache in any circumstance without first revalidating with the origin. When present, the TTL of the response should not be overridden to be greater than the value provided by the origin.
@final
Definition at line 663 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::prepare | ( | Request | $request | ) |
Prepares the Response before it is sent to the client.
This method tweaks the Response to ensure that it is compliant with RFC 2616. Most of the changes are based on the Request that is "associated" with this Response.
Reimplemented in Symfony\Component\HttpFoundation\BinaryFileResponse, and Symfony\Component\HttpFoundation\BinaryFileResponse.
Definition at line 283 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$charset, Symfony\Component\HttpFoundation\Response\$headers, Symfony\Component\HttpFoundation\Response\ensureIEOverSSLCompatibility(), Symfony\Component\HttpFoundation\Request\get(), Symfony\Component\HttpFoundation\Request\getMimeType(), Symfony\Component\HttpFoundation\Response\getProtocolVersion(), Symfony\Component\HttpFoundation\Request\getRequestFormat(), Symfony\Component\HttpFoundation\Response\isEmpty(), Symfony\Component\HttpFoundation\Response\isInformational(), Symfony\Component\HttpFoundation\Request\isMethod(), Symfony\Component\HttpFoundation\Request\isSecure(), Symfony\Component\HttpFoundation\Response\setContent(), and Symfony\Component\HttpFoundation\Response\setProtocolVersion().
Symfony\Component\HttpFoundation\Response::prepare | ( | Request | $request | ) |
Prepares the Response before it is sent to the client.
This method tweaks the Response to ensure that it is compliant with RFC 2616. Most of the changes are based on the Request that is "associated" with this Response.
Reimplemented in Symfony\Component\HttpFoundation\BinaryFileResponse, and Symfony\Component\HttpFoundation\BinaryFileResponse.
Definition at line 286 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$charset, Symfony\Component\HttpFoundation\Response\$headers, Symfony\Component\HttpFoundation\Response\ensureIEOverSSLCompatibility(), Symfony\Component\HttpFoundation\Request\get(), Symfony\Component\HttpFoundation\Request\getMimeType(), Symfony\Component\HttpFoundation\Response\getProtocolVersion(), Symfony\Component\HttpFoundation\Request\getRequestFormat(), Symfony\Component\HttpFoundation\Response\isEmpty(), Symfony\Component\HttpFoundation\Response\isInformational(), Symfony\Component\HttpFoundation\Request\isMethod(), Symfony\Component\HttpFoundation\Response\setContent(), and Symfony\Component\HttpFoundation\Response\setProtocolVersion().
Symfony\Component\HttpFoundation\Response::send | ( | ) |
Sends HTTP headers and content.
Definition at line 396 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\sendContent(), and Symfony\Component\HttpFoundation\Response\sendHeaders().
Symfony\Component\HttpFoundation\Response::send | ( | ) |
Sends HTTP headers and content.
Definition at line 399 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\sendContent(), and Symfony\Component\HttpFoundation\Response\sendHeaders().
Symfony\Component\HttpFoundation\Response::sendContent | ( | ) |
Sends content for the current web response.
Reimplemented in Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\StreamedResponse, and Symfony\Component\HttpFoundation\StreamedResponse.
Definition at line 384 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$content.
Symfony\Component\HttpFoundation\Response::sendContent | ( | ) |
Sends content for the current web response.
Reimplemented in Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\StreamedResponse, and Symfony\Component\HttpFoundation\StreamedResponse.
Definition at line 387 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$content.
Referenced by Symfony\Component\HttpFoundation\Response\send().
Symfony\Component\HttpFoundation\Response::sendHeaders | ( | ) |
Sends HTTP headers.
Reimplemented in Symfony\Component\HttpFoundation\StreamedResponse, and Symfony\Component\HttpFoundation\StreamedResponse.
Definition at line 348 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\setDate().
Referenced by Symfony\Component\HttpFoundation\Response\send().
Symfony\Component\HttpFoundation\Response::sendHeaders | ( | ) |
Sends HTTP headers.
Reimplemented in Symfony\Component\HttpFoundation\StreamedResponse, and Symfony\Component\HttpFoundation\StreamedResponse.
Definition at line 353 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::setCache | ( | array | $options | ) |
Sets the response's cache headers (validation and/or expiration).
Available options are: etag, last_modified, max_age, s_maxage, private, public and immutable.
Definition at line 963 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\setEtag(), Symfony\Component\HttpFoundation\Response\setImmutable(), Symfony\Component\HttpFoundation\Response\setLastModified(), Symfony\Component\HttpFoundation\Response\setMaxAge(), Symfony\Component\HttpFoundation\Response\setPrivate(), Symfony\Component\HttpFoundation\Response\setPublic(), and Symfony\Component\HttpFoundation\Response\setSharedMaxAge().
Symfony\Component\HttpFoundation\Response::setCache | ( | array | $options | ) |
Sets the response's cache headers (validation and/or expiration).
Available options are: etag, last_modified, max_age, s_maxage, private, and public.
array | $options | An array of cache options |
Definition at line 975 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\setEtag(), Symfony\Component\HttpFoundation\Response\setLastModified(), Symfony\Component\HttpFoundation\Response\setMaxAge(), Symfony\Component\HttpFoundation\Response\setPrivate(), Symfony\Component\HttpFoundation\Response\setPublic(), and Symfony\Component\HttpFoundation\Response\setSharedMaxAge().
Symfony\Component\HttpFoundation\Response::setCharset | ( | $charset | ) |
Sets the response charset.
string | $charset | Character set |
@final since version 3.2
Definition at line 533 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$charset.
Symfony\Component\HttpFoundation\Response::setCharset | ( | string | $charset | ) |
Sets the response charset.
@final
Definition at line 519 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$charset.
Symfony\Component\HttpFoundation\Response::setClientTtl | ( | $seconds | ) |
Sets the response's time-to-live for private/client caches.
This method adjusts the Cache-Control/max-age directive.
int | $seconds | Number of seconds |
@final since version 3.2
Definition at line 880 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getAge(), and Symfony\Component\HttpFoundation\Response\setMaxAge().
Symfony\Component\HttpFoundation\Response::setClientTtl | ( | int | $seconds | ) |
Sets the response's time-to-live for private/client caches in seconds.
This method adjusts the Cache-Control/max-age directive.
@final
Definition at line 871 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getAge(), and Symfony\Component\HttpFoundation\Response\setMaxAge().
Symfony\Component\HttpFoundation\Response::setContent | ( | $content | ) |
Sets the response content.
Valid types are strings, numbers, null, and objects that implement a __toString() method.
mixed | $content | Content that can be cast to string |
Reimplemented in Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\StreamedResponse, and Symfony\Component\HttpFoundation\StreamedResponse.
Definition at line 421 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$content.
Symfony\Component\HttpFoundation\Response::setContent | ( | $content | ) |
Sets the response content.
Valid types are strings, numbers, null, and objects that implement a __toString() method.
mixed | $content | Content that can be cast to string |
Reimplemented in Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\BinaryFileResponse, Symfony\Component\HttpFoundation\StreamedResponse, and Symfony\Component\HttpFoundation\StreamedResponse.
Definition at line 424 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$content.
Referenced by Symfony\Component\HttpFoundation\Response\__construct(), Symfony\Component\HttpFoundation\Response\prepare(), Symfony\Component\HttpFoundation\Response\setNotModified(), Symfony\Component\HttpFoundation\RedirectResponse\setTargetUrl(), and Symfony\Component\HttpFoundation\JsonResponse\update().
Symfony\Component\HttpFoundation\Response::setDate | ( | \DateTime | $date | ) |
Sets the Date header.
\DateTime | $date | A \DateTime instance |
@final since version 3.2
Definition at line 690 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\__construct(), Symfony\Component\HttpFoundation\Response\getDate(), and Symfony\Component\HttpFoundation\Response\sendHeaders().
Symfony\Component\HttpFoundation\Response::setDate | ( | \DateTimeInterface | $date | ) |
Sets the Date header.
@final
Definition at line 687 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::setEtag | ( | $etag = null , |
|
$weak = false |
|||
) |
Sets the ETag value.
string | null | $etag | The ETag unique identifier or null to remove the header |
bool | $weak | Whether you want a weak ETag or not |
@final since version 3.2
Definition at line 947 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\BinaryFileResponse\setAutoEtag(), and Symfony\Component\HttpFoundation\Response\setCache().
Symfony\Component\HttpFoundation\Response::setEtag | ( | string | $etag = null , |
bool | $weak = false |
||
) |
Sets the ETag value.
string | null | $etag | The ETag unique identifier or null to remove the header |
bool | $weak | Whether you want a weak ETag or not |
@final
Definition at line 937 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::setExpires | ( | \DateTime | $date = null | ) |
Sets the Expires HTTP header with a DateTime instance.
Passing null as value will remove the header.
\DateTime | null | $date | A \DateTime instance or null to remove the header |
@final since version 3.2
Definition at line 756 of file lib/vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::setExpires | ( | \DateTimeInterface | $date = null | ) |
Sets the Expires HTTP header with a DateTime instance.
Passing null as value will remove the header.
@final
Definition at line 752 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::setImmutable | ( | bool | $immutable = true | ) |
Marks the response as "immutable".
@final
Definition at line 632 of file vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\setCache().
Symfony\Component\HttpFoundation\Response::setLastModified | ( | \DateTime | $date = null | ) |
Sets the Last-Modified HTTP header with a DateTime instance.
Passing null as value will remove the header.
\DateTime | null | $date | A \DateTime instance or null to remove the header |
@final since version 3.2
Reimplemented in Symfony\Component\HttpFoundation\Tests\ExtendedResponse.
Definition at line 912 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\BinaryFileResponse\setAutoLastModified(), and Symfony\Component\HttpFoundation\Response\setCache().
Symfony\Component\HttpFoundation\Response::setLastModified | ( | \DateTimeInterface | $date = null | ) |
Sets the Last-Modified HTTP header with a DateTime instance.
Passing null as value will remove the header.
@final
Definition at line 899 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::setMaxAge | ( | $value | ) |
Sets the number of seconds after which the response should no longer be considered fresh.
This methods sets the Cache-Control max-age directive.
int | $value | Number of seconds |
@final since version 3.2
Definition at line 806 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\setCache(), and Symfony\Component\HttpFoundation\Response\setClientTtl().
Symfony\Component\HttpFoundation\Response::setMaxAge | ( | int | $value | ) |
Sets the number of seconds after which the response should no longer be considered fresh.
This methods sets the Cache-Control max-age directive.
@final
Definition at line 805 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::setNotModified | ( | ) |
Modifies the response so that it conforms to the rules defined for a 304 status code.
This sets the status, removes the body, and discards any headers that MUST NOT be included in 304 responses.
@final
Definition at line 1020 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\setContent(), and Symfony\Component\HttpFoundation\Response\setStatusCode().
Symfony\Component\HttpFoundation\Response::setNotModified | ( | ) |
Modifies the response so that it conforms to the rules defined for a 304 status code.
This sets the status, removes the body, and discards any headers that MUST NOT be included in 304 responses.
@final since version 3.3
Definition at line 1028 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\setContent(), and Symfony\Component\HttpFoundation\Response\setStatusCode().
Referenced by Symfony\Component\HttpFoundation\Response\isNotModified().
Symfony\Component\HttpFoundation\Response::setPrivate | ( | ) |
Marks the response as "private".
It makes the response ineligible for serving other clients.
@final
Definition at line 600 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::setPrivate | ( | ) |
Marks the response as "private".
It makes the response ineligible for serving other clients.
@final since version 3.2
Definition at line 616 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\setCache().
Symfony\Component\HttpFoundation\Response::setProtocolVersion | ( | $version | ) |
Sets the HTTP protocol version (1.0 or 1.1).
string | $version | The HTTP protocol version |
@final since version 3.2
Definition at line 454 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$version.
Referenced by Symfony\Component\HttpFoundation\Response\__construct(), Symfony\Component\HttpFoundation\BinaryFileResponse\prepare(), and Symfony\Component\HttpFoundation\Response\prepare().
Symfony\Component\HttpFoundation\Response::setProtocolVersion | ( | string | $version | ) |
Sets the HTTP protocol version (1.0 or 1.1).
@final
Definition at line 449 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$version.
Symfony\Component\HttpFoundation\Response::setPublic | ( | ) |
Marks the response as "public".
It makes the response eligible for serving other clients.
@final
Definition at line 617 of file vendor/symfony/http-foundation/Response.php.
Symfony\Component\HttpFoundation\Response::setPublic | ( | ) |
Marks the response as "public".
It makes the response eligible for serving other clients.
@final since version 3.2
Definition at line 633 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\BinaryFileResponse\__construct(), Symfony\Component\HttpFoundation\Response\setCache(), and Symfony\Component\HttpFoundation\Response\setSharedMaxAge().
Symfony\Component\HttpFoundation\Response::setSharedMaxAge | ( | $value | ) |
Sets the number of seconds after which the response should no longer be considered fresh by shared caches.
This methods sets the Cache-Control s-maxage directive.
int | $value | Number of seconds |
@final since version 3.2
Definition at line 824 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\setPublic().
Referenced by Symfony\Component\HttpFoundation\Response\setCache(), and Symfony\Component\HttpFoundation\Response\setTtl().
Symfony\Component\HttpFoundation\Response::setSharedMaxAge | ( | int | $value | ) |
Sets the number of seconds after which the response should no longer be considered fresh by shared caches.
This methods sets the Cache-Control s-maxage directive.
@final
Definition at line 821 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\setPublic().
Symfony\Component\HttpFoundation\Response::setStatusCode | ( | $code, | |
$text = null |
|||
) |
Sets the response status code.
int | $code | HTTP status code |
mixed | $text | HTTP status text |
If the status text is null it will be automatically populated for the known status codes and left empty otherwise.
Definition at line 488 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\isInvalid().
Referenced by Symfony\Component\HttpFoundation\Response\__construct(), Symfony\Component\HttpFoundation\BinaryFileResponse\prepare(), and Symfony\Component\HttpFoundation\Response\setNotModified().
Symfony\Component\HttpFoundation\Response::setStatusCode | ( | int | $code, |
$text = null |
|||
) |
Sets the response status code.
If the status text is null it will be automatically populated for the known status codes and left empty otherwise.
Definition at line 478 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\isInvalid().
Symfony\Component\HttpFoundation\Response::setTtl | ( | $seconds | ) |
Sets the response's time-to-live for shared caches.
This method adjusts the Cache-Control/s-maxage directive.
int | $seconds | Number of seconds |
@final since version 3.2
Definition at line 862 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getAge(), and Symfony\Component\HttpFoundation\Response\setSharedMaxAge().
Symfony\Component\HttpFoundation\Response::setTtl | ( | int | $seconds | ) |
Sets the response's time-to-live for shared caches in seconds.
This method adjusts the Cache-Control/s-maxage directive.
@final
Definition at line 855 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\getAge(), and Symfony\Component\HttpFoundation\Response\setSharedMaxAge().
Symfony\Component\HttpFoundation\Response::setVary | ( | $headers, | |
$replace = true |
|||
) |
Sets the Vary header.
string | array | $headers | |
bool | $replace | Whether to replace the actual value or not (true by default) |
@final since version 3.2
Definition at line 1084 of file lib/vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$headers.
Symfony\Component\HttpFoundation\Response::setVary | ( | $headers, | |
bool | $replace = true |
||
) |
Sets the Vary header.
string | array | $headers | |
bool | $replace | Whether to replace the actual value or not (true by default) |
@final
Definition at line 1072 of file vendor/symfony/http-foundation/Response.php.
References Symfony\Component\HttpFoundation\Response\$headers.
|
protected |
Definition at line 130 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\getCharset(), Symfony\Component\HttpFoundation\Response\prepare(), and Symfony\Component\HttpFoundation\Response\setCharset().
|
protected |
Definition at line 98 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\__construct(), Symfony\Component\HttpFoundation\Response\create(), Symfony\Component\HttpFoundation\Response\getContent(), Symfony\Component\HttpFoundation\Response\sendContent(), Symfony\Component\HttpFoundation\StreamedResponse\setContent(), Symfony\Component\HttpFoundation\BinaryFileResponse\setContent(), and Symfony\Component\HttpFoundation\Response\setContent().
ResponseHeaderBag Symfony\Component\HttpFoundation\Response::$headers |
Definition at line 90 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\__clone(), Symfony\Component\HttpFoundation\RedirectResponse\__construct(), Symfony\Component\HttpFoundation\StreamedResponse\__construct(), Symfony\Component\HttpFoundation\JsonResponse\__construct(), Symfony\Component\HttpFoundation\BinaryFileResponse\__construct(), Symfony\Component\HttpFoundation\Response\__construct(), Symfony\Component\HttpFoundation\RedirectResponse\create(), Symfony\Component\HttpFoundation\StreamedResponse\create(), Symfony\Component\HttpFoundation\JsonResponse\create(), Symfony\Component\HttpFoundation\BinaryFileResponse\create(), Symfony\Component\HttpFoundation\Response\create(), Symfony\Component\HttpFoundation\JsonResponse\fromJsonString(), Symfony\Component\HttpFoundation\Response\prepare(), and Symfony\Component\HttpFoundation\Response\setVary().
|
protected |
Definition at line 114 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\getStatusCode(), Symfony\Component\HttpFoundation\Response\isForbidden(), Symfony\Component\HttpFoundation\Response\isNotFound(), and Symfony\Component\HttpFoundation\Response\isOk().
|
protected |
Definition at line 122 of file lib/vendor/symfony/http-foundation/Response.php.
|
static |
Definition at line 143 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Tests\ResponseTest\testReasonPhraseDefaultsAgainstIana().
|
protected |
Definition at line 106 of file lib/vendor/symfony/http-foundation/Response.php.
Referenced by Symfony\Component\HttpFoundation\Response\getProtocolVersion(), and Symfony\Component\HttpFoundation\Response\setProtocolVersion().
const Symfony\Component\HttpFoundation\Response::HTTP_ACCEPTED = 202 |
Definition at line 26 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_ALREADY_REPORTED = 208 |
Definition at line 32 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_BAD_GATEWAY = 502 |
Definition at line 74 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_BAD_REQUEST = 400 |
Definition at line 43 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_CONFLICT = 409 |
Definition at line 52 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_CONTINUE = 100 |
Definition at line 21 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_CREATED = 201 |
Definition at line 25 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_EARLY_HINTS = 103 |
Definition at line 27 of file vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_EXPECTATION_FAILED = 417 |
Definition at line 60 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_FAILED_DEPENDENCY = 424 |
Definition at line 65 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_FORBIDDEN = 403 |
Definition at line 46 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_FOUND = 302 |
Definition at line 36 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_GATEWAY_TIMEOUT = 504 |
Definition at line 76 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_GONE = 410 |
Definition at line 53 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_I_AM_A_TEAPOT = 418 |
Definition at line 61 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_IM_USED = 226 |
Definition at line 33 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_INSUFFICIENT_STORAGE = 507 |
Definition at line 79 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_INTERNAL_SERVER_ERROR = 500 |
Definition at line 72 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_LENGTH_REQUIRED = 411 |
Definition at line 54 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_LOCKED = 423 |
Definition at line 64 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_LOOP_DETECTED = 508 |
Definition at line 80 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_METHOD_NOT_ALLOWED = 405 |
Definition at line 48 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_MISDIRECTED_REQUEST = 421 |
Definition at line 62 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_MOVED_PERMANENTLY = 301 |
Definition at line 35 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_MULTI_STATUS = 207 |
Definition at line 31 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_MULTIPLE_CHOICES = 300 |
Definition at line 34 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_NETWORK_AUTHENTICATION_REQUIRED = 511 |
Definition at line 82 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_NO_CONTENT = 204 |
Definition at line 28 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_NON_AUTHORITATIVE_INFORMATION = 203 |
Definition at line 27 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_NOT_ACCEPTABLE = 406 |
Definition at line 49 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_NOT_EXTENDED = 510 |
Definition at line 81 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_NOT_FOUND = 404 |
Definition at line 47 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_NOT_IMPLEMENTED = 501 |
Definition at line 73 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_NOT_MODIFIED = 304 |
Definition at line 38 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_OK = 200 |
Definition at line 24 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_PARTIAL_CONTENT = 206 |
Definition at line 30 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_PAYMENT_REQUIRED = 402 |
Definition at line 45 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_PERMANENTLY_REDIRECT = 308 |
Definition at line 42 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_PRECONDITION_FAILED = 412 |
Definition at line 55 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_PRECONDITION_REQUIRED = 428 |
Definition at line 68 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_PROCESSING = 102 |
Definition at line 23 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_PROXY_AUTHENTICATION_REQUIRED = 407 |
Definition at line 50 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_REQUEST_ENTITY_TOO_LARGE = 413 |
Definition at line 56 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE = 431 |
Definition at line 70 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_REQUEST_TIMEOUT = 408 |
Definition at line 51 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_REQUEST_URI_TOO_LONG = 414 |
Definition at line 57 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_REQUESTED_RANGE_NOT_SATISFIABLE = 416 |
Definition at line 59 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_RESERVED = 306 |
Definition at line 40 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_RESERVED_FOR_WEBDAV_ADVANCED_COLLECTIONS_EXPIRED_PROPOSAL = 425 |
Definition at line 66 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_RESET_CONTENT = 205 |
Definition at line 29 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_SEE_OTHER = 303 |
Definition at line 37 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_SERVICE_UNAVAILABLE = 503 |
Definition at line 75 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_SWITCHING_PROTOCOLS = 101 |
Definition at line 22 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_TEMPORARY_REDIRECT = 307 |
Definition at line 41 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_TOO_EARLY = 425 |
Definition at line 75 of file vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_TOO_MANY_REQUESTS = 429 |
Definition at line 69 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_UNAUTHORIZED = 401 |
Definition at line 44 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_UNAVAILABLE_FOR_LEGAL_REASONS = 451 |
Definition at line 71 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_UNPROCESSABLE_ENTITY = 422 |
Definition at line 63 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_UNSUPPORTED_MEDIA_TYPE = 415 |
Definition at line 58 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_UPGRADE_REQUIRED = 426 |
Definition at line 67 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_USE_PROXY = 305 |
Definition at line 39 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_VARIANT_ALSO_NEGOTIATES_EXPERIMENTAL = 506 |
Definition at line 78 of file lib/vendor/symfony/http-foundation/Response.php.
const Symfony\Component\HttpFoundation\Response::HTTP_VERSION_NOT_SUPPORTED = 505 |
Definition at line 77 of file lib/vendor/symfony/http-foundation/Response.php.