@@ -32,35 +32,35 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | class NotFoundHttpException extends HttpException |
| 34 | 34 | { |
| 35 | - /** |
|
| 36 | - * Get the HTTP status code. |
|
| 37 | - * |
|
| 38 | - * @var int $code |
|
| 39 | - */ |
|
| 40 | - protected $code = 404; |
|
| 35 | + /** |
|
| 36 | + * Get the HTTP status code. |
|
| 37 | + * |
|
| 38 | + * @var int $code |
|
| 39 | + */ |
|
| 40 | + protected $code = 404; |
|
| 41 | 41 | |
| 42 | - /** |
|
| 43 | - * Initialize constructor. |
|
| 44 | - * |
|
| 45 | - * @param string|null $message (null by default) |
|
| 46 | - * @param \Throwable|null $previous (null by default) |
|
| 47 | - * @param int $code (0 by default) |
|
| 48 | - * @param array $headers |
|
| 49 | - * |
|
| 50 | - * @return void |
|
| 51 | - */ |
|
| 52 | - public function __construct( |
|
| 53 | - ?string $message = null, |
|
| 54 | - ?Throwable $previous = null, |
|
| 55 | - int $code = 0, |
|
| 56 | - array $headers = [] |
|
| 57 | - ) { |
|
| 42 | + /** |
|
| 43 | + * Initialize constructor. |
|
| 44 | + * |
|
| 45 | + * @param string|null $message (null by default) |
|
| 46 | + * @param \Throwable|null $previous (null by default) |
|
| 47 | + * @param int $code (0 by default) |
|
| 48 | + * @param array $headers |
|
| 49 | + * |
|
| 50 | + * @return void |
|
| 51 | + */ |
|
| 52 | + public function __construct( |
|
| 53 | + ?string $message = null, |
|
| 54 | + ?Throwable $previous = null, |
|
| 55 | + int $code = 0, |
|
| 56 | + array $headers = [] |
|
| 57 | + ) { |
|
| 58 | 58 | parent::__construct( |
| 59 | - $this->code, |
|
| 60 | - $message, |
|
| 61 | - $previous, |
|
| 62 | - $headers, |
|
| 63 | - $code |
|
| 64 | - ); |
|
| 65 | - } |
|
| 59 | + $this->code, |
|
| 60 | + $message, |
|
| 61 | + $previous, |
|
| 62 | + $headers, |
|
| 63 | + $code |
|
| 64 | + ); |
|
| 65 | + } |
|
| 66 | 66 | } |
| 67 | 67 | \ No newline at end of file |
@@ -36,42 +36,42 @@ |
||
| 36 | 36 | */ |
| 37 | 37 | class ServiceUnavailableHttpException extends HttpException |
| 38 | 38 | { |
| 39 | - /** |
|
| 40 | - * Get the HTTP status code. |
|
| 41 | - * |
|
| 42 | - * @var int $code |
|
| 43 | - */ |
|
| 44 | - protected $code = 503; |
|
| 39 | + /** |
|
| 40 | + * Get the HTTP status code. |
|
| 41 | + * |
|
| 42 | + * @var int $code |
|
| 43 | + */ |
|
| 44 | + protected $code = 503; |
|
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Initialize constructor. |
|
| 48 | - * |
|
| 49 | - * @param int|string|null $retryAfter The number of seconds or HTTP-date after |
|
| 50 | - * which the request may be retried (null by default) |
|
| 51 | - * @param string|null $message (null by default) |
|
| 52 | - * @param \Throwable|null $previous (null by default) |
|
| 53 | - * @param int $code (0 by default) |
|
| 54 | - * @param array $headers |
|
| 55 | - * |
|
| 56 | - * @return void |
|
| 57 | - */ |
|
| 58 | - public function __construct( |
|
| 59 | - $retryAfter = null, |
|
| 60 | - string $message = null, |
|
| 61 | - Throwable $previous = null, |
|
| 62 | - ?int $code = 0, |
|
| 63 | - array $headers = [] |
|
| 64 | - ) { |
|
| 65 | - if ($retryAfter) { |
|
| 66 | - $headers['Retry-After'] = $retryAfter; |
|
| 67 | - } |
|
| 46 | + /** |
|
| 47 | + * Initialize constructor. |
|
| 48 | + * |
|
| 49 | + * @param int|string|null $retryAfter The number of seconds or HTTP-date after |
|
| 50 | + * which the request may be retried (null by default) |
|
| 51 | + * @param string|null $message (null by default) |
|
| 52 | + * @param \Throwable|null $previous (null by default) |
|
| 53 | + * @param int $code (0 by default) |
|
| 54 | + * @param array $headers |
|
| 55 | + * |
|
| 56 | + * @return void |
|
| 57 | + */ |
|
| 58 | + public function __construct( |
|
| 59 | + $retryAfter = null, |
|
| 60 | + string $message = null, |
|
| 61 | + Throwable $previous = null, |
|
| 62 | + ?int $code = 0, |
|
| 63 | + array $headers = [] |
|
| 64 | + ) { |
|
| 65 | + if ($retryAfter) { |
|
| 66 | + $headers['Retry-After'] = $retryAfter; |
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | - parent::__construct( |
|
| 70 | - $this->code, |
|
| 71 | - $message, |
|
| 72 | - $previous, |
|
| 73 | - $headers, |
|
| 74 | - $code |
|
| 75 | - ); |
|
| 76 | - } |
|
| 69 | + parent::__construct( |
|
| 70 | + $this->code, |
|
| 71 | + $message, |
|
| 72 | + $previous, |
|
| 73 | + $headers, |
|
| 74 | + $code |
|
| 75 | + ); |
|
| 76 | + } |
|
| 77 | 77 | } |
| 78 | 78 | \ No newline at end of file |
@@ -32,35 +32,35 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | class ServerErrorHttpException extends HttpException |
| 34 | 34 | { |
| 35 | - /** |
|
| 36 | - * Get the HTTP status code. |
|
| 37 | - * |
|
| 38 | - * @var int $code |
|
| 39 | - */ |
|
| 40 | - protected $code = 500; |
|
| 35 | + /** |
|
| 36 | + * Get the HTTP status code. |
|
| 37 | + * |
|
| 38 | + * @var int $code |
|
| 39 | + */ |
|
| 40 | + protected $code = 500; |
|
| 41 | 41 | |
| 42 | - /** |
|
| 43 | - * Initialize constructor. |
|
| 44 | - * |
|
| 45 | - * @param string|null $message (null by default) |
|
| 46 | - * @param \Throwable|null $previous (null by default) |
|
| 47 | - * @param int $code (0 by default) |
|
| 48 | - * @param array $headers |
|
| 49 | - * |
|
| 50 | - * @return void |
|
| 51 | - */ |
|
| 52 | - public function __construct( |
|
| 53 | - string $message = null, |
|
| 54 | - Throwable $previous = null, |
|
| 55 | - int $code = 0, |
|
| 56 | - array $headers = [] |
|
| 57 | - ) { |
|
| 42 | + /** |
|
| 43 | + * Initialize constructor. |
|
| 44 | + * |
|
| 45 | + * @param string|null $message (null by default) |
|
| 46 | + * @param \Throwable|null $previous (null by default) |
|
| 47 | + * @param int $code (0 by default) |
|
| 48 | + * @param array $headers |
|
| 49 | + * |
|
| 50 | + * @return void |
|
| 51 | + */ |
|
| 52 | + public function __construct( |
|
| 53 | + string $message = null, |
|
| 54 | + Throwable $previous = null, |
|
| 55 | + int $code = 0, |
|
| 56 | + array $headers = [] |
|
| 57 | + ) { |
|
| 58 | 58 | parent::__construct( |
| 59 | - $this->code, |
|
| 60 | - $message, |
|
| 61 | - $previous, |
|
| 62 | - $headers, |
|
| 63 | - $code |
|
| 64 | - ); |
|
| 65 | - } |
|
| 59 | + $this->code, |
|
| 60 | + $message, |
|
| 61 | + $previous, |
|
| 62 | + $headers, |
|
| 63 | + $code |
|
| 64 | + ); |
|
| 65 | + } |
|
| 66 | 66 | } |
| 67 | 67 | \ No newline at end of file |
@@ -32,35 +32,35 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | class BadRequestHttpException extends HttpException |
| 34 | 34 | { |
| 35 | - /** |
|
| 36 | - * Get the HTTP status code. |
|
| 37 | - * |
|
| 38 | - * @var int $code |
|
| 39 | - */ |
|
| 40 | - protected $code = 400; |
|
| 35 | + /** |
|
| 36 | + * Get the HTTP status code. |
|
| 37 | + * |
|
| 38 | + * @var int $code |
|
| 39 | + */ |
|
| 40 | + protected $code = 400; |
|
| 41 | 41 | |
| 42 | - /** |
|
| 43 | - * Initialize constructor. |
|
| 44 | - * |
|
| 45 | - * @param string|null $message (null by default) |
|
| 46 | - * @param \Throwable|null $previous (null by default) |
|
| 47 | - * @param int $code (0 by default) |
|
| 48 | - * @param array $headers |
|
| 49 | - * |
|
| 50 | - * @return void |
|
| 51 | - */ |
|
| 52 | - public function __construct( |
|
| 53 | - string $message = null, |
|
| 54 | - Throwable $previous = null, |
|
| 55 | - int $code = 0, |
|
| 56 | - array $headers = [] |
|
| 57 | - ) { |
|
| 42 | + /** |
|
| 43 | + * Initialize constructor. |
|
| 44 | + * |
|
| 45 | + * @param string|null $message (null by default) |
|
| 46 | + * @param \Throwable|null $previous (null by default) |
|
| 47 | + * @param int $code (0 by default) |
|
| 48 | + * @param array $headers |
|
| 49 | + * |
|
| 50 | + * @return void |
|
| 51 | + */ |
|
| 52 | + public function __construct( |
|
| 53 | + string $message = null, |
|
| 54 | + Throwable $previous = null, |
|
| 55 | + int $code = 0, |
|
| 56 | + array $headers = [] |
|
| 57 | + ) { |
|
| 58 | 58 | parent::__construct( |
| 59 | - $this->code, |
|
| 60 | - $message, |
|
| 61 | - $previous, |
|
| 62 | - $headers, |
|
| 63 | - $code |
|
| 64 | - ); |
|
| 65 | - } |
|
| 59 | + $this->code, |
|
| 60 | + $message, |
|
| 61 | + $previous, |
|
| 62 | + $headers, |
|
| 63 | + $code |
|
| 64 | + ); |
|
| 65 | + } |
|
| 66 | 66 | } |
| 67 | 67 | \ No newline at end of file |
@@ -33,35 +33,35 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | class PreconditionFailedHttpException extends HttpException |
| 35 | 35 | { |
| 36 | - /** |
|
| 37 | - * Get the HTTP status code. |
|
| 38 | - * |
|
| 39 | - * @var int $code |
|
| 40 | - */ |
|
| 41 | - protected $code = 412; |
|
| 36 | + /** |
|
| 37 | + * Get the HTTP status code. |
|
| 38 | + * |
|
| 39 | + * @var int $code |
|
| 40 | + */ |
|
| 41 | + protected $code = 412; |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Initialize constructor. |
|
| 45 | - * |
|
| 46 | - * @param string|null $message (null by default) |
|
| 47 | - * @param \Throwable|null $previous (null by default) |
|
| 48 | - * @param int $code (0 by default) |
|
| 49 | - * @param array $headers |
|
| 50 | - * |
|
| 51 | - * @return void |
|
| 52 | - */ |
|
| 53 | - public function __construct( |
|
| 54 | - string $message = null, |
|
| 55 | - Throwable $previous = null, |
|
| 56 | - int $code = 0, |
|
| 57 | - array $headers = [] |
|
| 58 | - ) { |
|
| 59 | - parent::__construct( |
|
| 60 | - $this->code, |
|
| 61 | - $message, |
|
| 62 | - $previous, |
|
| 63 | - $headers, |
|
| 64 | - $code |
|
| 65 | - ); |
|
| 66 | - } |
|
| 43 | + /** |
|
| 44 | + * Initialize constructor. |
|
| 45 | + * |
|
| 46 | + * @param string|null $message (null by default) |
|
| 47 | + * @param \Throwable|null $previous (null by default) |
|
| 48 | + * @param int $code (0 by default) |
|
| 49 | + * @param array $headers |
|
| 50 | + * |
|
| 51 | + * @return void |
|
| 52 | + */ |
|
| 53 | + public function __construct( |
|
| 54 | + string $message = null, |
|
| 55 | + Throwable $previous = null, |
|
| 56 | + int $code = 0, |
|
| 57 | + array $headers = [] |
|
| 58 | + ) { |
|
| 59 | + parent::__construct( |
|
| 60 | + $this->code, |
|
| 61 | + $message, |
|
| 62 | + $previous, |
|
| 63 | + $headers, |
|
| 64 | + $code |
|
| 65 | + ); |
|
| 66 | + } |
|
| 67 | 67 | } |
| 68 | 68 | \ No newline at end of file |
@@ -33,35 +33,35 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | class UnprocessableEntityHttpException extends HttpException |
| 35 | 35 | { |
| 36 | - /** |
|
| 37 | - * Get the HTTP status code. |
|
| 38 | - * |
|
| 39 | - * @var int $code |
|
| 40 | - */ |
|
| 41 | - protected $code = 422; |
|
| 36 | + /** |
|
| 37 | + * Get the HTTP status code. |
|
| 38 | + * |
|
| 39 | + * @var int $code |
|
| 40 | + */ |
|
| 41 | + protected $code = 422; |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Initialize constructor. |
|
| 45 | - * |
|
| 46 | - * @param string|null $message (null by default) |
|
| 47 | - * @param \Throwable|null $previous (null by default) |
|
| 48 | - * @param int $code (0 by default) |
|
| 49 | - * @param array $headers |
|
| 50 | - * |
|
| 51 | - * @return void |
|
| 52 | - */ |
|
| 53 | - public function __construct( |
|
| 54 | - string $message = null, |
|
| 55 | - Throwable $previous = null, |
|
| 56 | - int $code = 0, |
|
| 57 | - array $headers = [] |
|
| 58 | - ) { |
|
| 59 | - parent::__construct( |
|
| 60 | - $this->code, |
|
| 61 | - $message, |
|
| 62 | - $previous, |
|
| 63 | - $headers, |
|
| 64 | - $code |
|
| 65 | - ); |
|
| 66 | - } |
|
| 43 | + /** |
|
| 44 | + * Initialize constructor. |
|
| 45 | + * |
|
| 46 | + * @param string|null $message (null by default) |
|
| 47 | + * @param \Throwable|null $previous (null by default) |
|
| 48 | + * @param int $code (0 by default) |
|
| 49 | + * @param array $headers |
|
| 50 | + * |
|
| 51 | + * @return void |
|
| 52 | + */ |
|
| 53 | + public function __construct( |
|
| 54 | + string $message = null, |
|
| 55 | + Throwable $previous = null, |
|
| 56 | + int $code = 0, |
|
| 57 | + array $headers = [] |
|
| 58 | + ) { |
|
| 59 | + parent::__construct( |
|
| 60 | + $this->code, |
|
| 61 | + $message, |
|
| 62 | + $previous, |
|
| 63 | + $headers, |
|
| 64 | + $code |
|
| 65 | + ); |
|
| 66 | + } |
|
| 67 | 67 | } |
| 68 | 68 | \ No newline at end of file |
@@ -33,39 +33,39 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | class MethodNotAllowedHttpException extends HttpException |
| 35 | 35 | { |
| 36 | - /** |
|
| 37 | - * Get the HTTP status code. |
|
| 38 | - * |
|
| 39 | - * @var int $code |
|
| 40 | - */ |
|
| 41 | - protected $code = 405; |
|
| 36 | + /** |
|
| 37 | + * Get the HTTP status code. |
|
| 38 | + * |
|
| 39 | + * @var int $code |
|
| 40 | + */ |
|
| 41 | + protected $code = 405; |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Initialize constructor. |
|
| 45 | - * |
|
| 46 | - * @param array $allow |
|
| 47 | - * @param string|null $message (null by default) |
|
| 48 | - * @param \Throwable|null $previous (null by default) |
|
| 49 | - * @param int $code (0 by default) |
|
| 50 | - * @param array $headers |
|
| 51 | - * |
|
| 52 | - * @return void |
|
| 53 | - */ |
|
| 54 | - public function __construct( |
|
| 55 | - array $allow = [], |
|
| 56 | - string $message = null, |
|
| 57 | - Throwable $previous = null, |
|
| 58 | - ?int $code = 0, |
|
| 59 | - array $headers = [] |
|
| 60 | - ) { |
|
| 61 | - $headers['Allow'] = strtoupper(implode(', ', $allow)); |
|
| 43 | + /** |
|
| 44 | + * Initialize constructor. |
|
| 45 | + * |
|
| 46 | + * @param array $allow |
|
| 47 | + * @param string|null $message (null by default) |
|
| 48 | + * @param \Throwable|null $previous (null by default) |
|
| 49 | + * @param int $code (0 by default) |
|
| 50 | + * @param array $headers |
|
| 51 | + * |
|
| 52 | + * @return void |
|
| 53 | + */ |
|
| 54 | + public function __construct( |
|
| 55 | + array $allow = [], |
|
| 56 | + string $message = null, |
|
| 57 | + Throwable $previous = null, |
|
| 58 | + ?int $code = 0, |
|
| 59 | + array $headers = [] |
|
| 60 | + ) { |
|
| 61 | + $headers['Allow'] = strtoupper(implode(', ', $allow)); |
|
| 62 | 62 | |
| 63 | - parent::__construct( |
|
| 64 | - $this->code, |
|
| 65 | - $message, |
|
| 66 | - $previous, |
|
| 67 | - $headers, |
|
| 68 | - $code |
|
| 69 | - ); |
|
| 70 | - } |
|
| 63 | + parent::__construct( |
|
| 64 | + $this->code, |
|
| 65 | + $message, |
|
| 66 | + $previous, |
|
| 67 | + $headers, |
|
| 68 | + $code |
|
| 69 | + ); |
|
| 70 | + } |
|
| 71 | 71 | } |
| 72 | 72 | \ No newline at end of file |
@@ -33,35 +33,35 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | class UnsupportedMediaTypeHttpException extends HttpException |
| 35 | 35 | { |
| 36 | - /** |
|
| 37 | - * Get the HTTP status code. |
|
| 38 | - * |
|
| 39 | - * @var int $code |
|
| 40 | - */ |
|
| 41 | - protected $code = 415; |
|
| 36 | + /** |
|
| 37 | + * Get the HTTP status code. |
|
| 38 | + * |
|
| 39 | + * @var int $code |
|
| 40 | + */ |
|
| 41 | + protected $code = 415; |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Initialize constructor. |
|
| 45 | - * |
|
| 46 | - * @param string|null $message (null by default) |
|
| 47 | - * @param \Throwable|null $previous (null by default) |
|
| 48 | - * @param int $code (0 by default) |
|
| 49 | - * @param array $headers |
|
| 50 | - * |
|
| 51 | - * @return void |
|
| 52 | - */ |
|
| 53 | - public function __construct( |
|
| 54 | - string $message = null, |
|
| 55 | - Throwable $previous = null, |
|
| 56 | - int $code = 0, |
|
| 57 | - array $headers = [] |
|
| 58 | - ) { |
|
| 59 | - parent::__construct( |
|
| 60 | - $this->code, |
|
| 61 | - $message, |
|
| 62 | - $previous, |
|
| 63 | - $headers, |
|
| 64 | - $code |
|
| 65 | - ); |
|
| 66 | - } |
|
| 43 | + /** |
|
| 44 | + * Initialize constructor. |
|
| 45 | + * |
|
| 46 | + * @param string|null $message (null by default) |
|
| 47 | + * @param \Throwable|null $previous (null by default) |
|
| 48 | + * @param int $code (0 by default) |
|
| 49 | + * @param array $headers |
|
| 50 | + * |
|
| 51 | + * @return void |
|
| 52 | + */ |
|
| 53 | + public function __construct( |
|
| 54 | + string $message = null, |
|
| 55 | + Throwable $previous = null, |
|
| 56 | + int $code = 0, |
|
| 57 | + array $headers = [] |
|
| 58 | + ) { |
|
| 59 | + parent::__construct( |
|
| 60 | + $this->code, |
|
| 61 | + $message, |
|
| 62 | + $previous, |
|
| 63 | + $headers, |
|
| 64 | + $code |
|
| 65 | + ); |
|
| 66 | + } |
|
| 67 | 67 | } |
| 68 | 68 | \ No newline at end of file |
@@ -33,38 +33,38 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | class UnauthorizedHttpException extends HttpException |
| 35 | 35 | { |
| 36 | - /** |
|
| 37 | - * Get the HTTP status code. |
|
| 38 | - * |
|
| 39 | - * @var int $code |
|
| 40 | - */ |
|
| 41 | - protected $code = 401; |
|
| 36 | + /** |
|
| 37 | + * Get the HTTP status code. |
|
| 38 | + * |
|
| 39 | + * @var int $code |
|
| 40 | + */ |
|
| 41 | + protected $code = 401; |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Initialize constructor. |
|
| 45 | - * |
|
| 46 | - * @param string|null $message (null by default) |
|
| 47 | - * @param \Throwable|null $previous (null by default) |
|
| 48 | - * @param int $code (0 by default) |
|
| 49 | - * @param array $headers |
|
| 50 | - * |
|
| 51 | - * @return void |
|
| 52 | - */ |
|
| 53 | - public function __construct( |
|
| 54 | - string $challenge, |
|
| 55 | - string $message = null, |
|
| 56 | - Throwable $previous = null, |
|
| 57 | - ?int $code = 0, |
|
| 58 | - array $headers = [] |
|
| 59 | - ) { |
|
| 60 | - $headers['WWW-Authenticate'] = $challenge; |
|
| 43 | + /** |
|
| 44 | + * Initialize constructor. |
|
| 45 | + * |
|
| 46 | + * @param string|null $message (null by default) |
|
| 47 | + * @param \Throwable|null $previous (null by default) |
|
| 48 | + * @param int $code (0 by default) |
|
| 49 | + * @param array $headers |
|
| 50 | + * |
|
| 51 | + * @return void |
|
| 52 | + */ |
|
| 53 | + public function __construct( |
|
| 54 | + string $challenge, |
|
| 55 | + string $message = null, |
|
| 56 | + Throwable $previous = null, |
|
| 57 | + ?int $code = 0, |
|
| 58 | + array $headers = [] |
|
| 59 | + ) { |
|
| 60 | + $headers['WWW-Authenticate'] = $challenge; |
|
| 61 | 61 | |
| 62 | 62 | parent::__construct( |
| 63 | - $this->code, |
|
| 64 | - $message, |
|
| 65 | - $previous, |
|
| 66 | - $headers, |
|
| 67 | - $code |
|
| 68 | - ); |
|
| 69 | - } |
|
| 63 | + $this->code, |
|
| 64 | + $message, |
|
| 65 | + $previous, |
|
| 66 | + $headers, |
|
| 67 | + $code |
|
| 68 | + ); |
|
| 69 | + } |
|
| 70 | 70 | } |
| 71 | 71 | \ No newline at end of file |