class MethodNotAllowedHttpException in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Exception/MethodNotAllowedHttpException.php \Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
MethodNotAllowedHttpException.
@author Kris Wallsmith <kris@symfony.com>
Hierarchy
- class \Symfony\Component\HttpKernel\Exception\HttpException extends \Symfony\Component\HttpKernel\Exception\RuntimeException implements HttpExceptionInterface
- class \Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
Expanded class hierarchy of MethodNotAllowedHttpException
4 files declare their use of MethodNotAllowedHttpException
- ExceptionHandlerTest.php in vendor/
symfony/ debug/ Tests/ ExceptionHandlerTest.php - FlattenExceptionTest.php in vendor/
symfony/ debug/ Tests/ Exception/ FlattenExceptionTest.php - HttpKernelTest.php in vendor/
symfony/ http-kernel/ Tests/ HttpKernelTest.php - RouterListener.php in vendor/
symfony/ http-kernel/ EventListener/ RouterListener.php
File
- vendor/
symfony/ http-kernel/ Exception/ MethodNotAllowedHttpException.php, line 19
Namespace
Symfony\Component\HttpKernel\ExceptionView source
class MethodNotAllowedHttpException extends HttpException {
/**
* Constructor.
*
* @param array $allow An array of allowed methods
* @param string $message The internal exception message
* @param \Exception $previous The previous exception
* @param int $code The internal exception code
*/
public function __construct(array $allow, $message = null, \Exception $previous = null, $code = 0) {
$headers = array(
'Allow' => strtoupper(implode(', ', $allow)),
);
parent::__construct(405, $message, $previous, $headers, $code);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
HttpException:: |
private | property | ||
HttpException:: |
private | property | ||
HttpException:: |
public | function |
Returns response headers. Overrides HttpExceptionInterface:: |
|
HttpException:: |
public | function |
Returns the status code. Overrides HttpExceptionInterface:: |
|
MethodNotAllowedHttpException:: |
public | function |
Constructor. Overrides HttpException:: |