JsonValidationDisplayer::canDisplay()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 3
1
<?php
2
3
/*
4
 * This file is part of Gitamin.
5
 *
6
 * Copyright (C) 2015-2016 The Gitamin Team
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Gitamin\Exceptions\Displayers;
13
14
use AltThree\Validator\ValidationException;
15
use Exception;
16
use GrahamCampbell\Exceptions\Displayers\DisplayerInterface;
17
use GrahamCampbell\Exceptions\Displayers\JsonDisplayer;
18
use Symfony\Component\HttpFoundation\JsonResponse;
19
20
class JsonValidationDisplayer extends JsonDisplayer implements DisplayerInterface
21
{
22
    /**
23
     * Get the error response associated with the given exception.
24
     *
25
     * @param \Exception $exception
26
     * @param string     $id
27
     * @param int        $code
28
     * @param string[]   $headers
29
     *
30
     * @return \Symfony\Component\HttpFoundation\Response
31
     */
32
    public function display(Exception $exception, $id, $code, array $headers)
33
    {
34
        $info = $this->info->generate($exception, $id, 400);
35
36
        $error = ['id' => $id, 'status' => $info['code'], 'title' => $info['name'], 'detail' => $info['detail'], 'meta' => ['details' => $exception->getMessageBag()->all()]];
0 ignored issues
show
Bug introduced by
The method getMessageBag() does not exist on Exception. Did you maybe mean getMessage()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
37
38
        return new JsonResponse(['errors' => [$error]], 400, array_merge($headers, ['Content-Type' => $this->contentType()]));
39
    }
40
41
    /**
42
     * Can we display the exception?
43
     *
44
     * @param \Exception $original
45
     * @param \Exception $transformed
46
     * @param int        $code
47
     *
48
     * @return bool
49
     */
50
    public function canDisplay(Exception $original, Exception $transformed, $code)
51
    {
52
        return $transformed instanceof ValidationException;
53
    }
54
}
55