1 | <?php declare(strict_types = 1); |
||
18 | class VndErrorResponse extends JsonResponse |
||
19 | { |
||
20 | const DEFAULT_STATUS = Response::HTTP_INTERNAL_SERVER_ERROR; |
||
21 | |||
22 | /** |
||
23 | * @param VndError $vndError |
||
24 | * @param int $status |
||
25 | * @param array $headers |
||
26 | */ |
||
27 | public function __construct(VndError $vndError, $status = self::DEFAULT_STATUS, array $headers = []) |
||
32 | } |
||
33 |