GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Schema   A
last analyzed

Complexity

Total Complexity 15

Size/Duplication

Total Lines 70
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 15
lcom 1
cbo 1
dl 0
loc 70
ccs 36
cts 36
cp 1
rs 10
c 0
b 0
f 0

7 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 2
A getPropertyPaths() 0 10 2
B normalizeObject() 0 18 6
A validate() 0 4 1
A isValid() 0 4 1
A getErrors() 0 4 1
A getErrorString() 0 10 2
1
<?php declare(strict_types=1);
2
3
namespace OpenStack\Common\JsonSchema;
4
5
use JsonSchema\Validator;
6
7
class Schema
8
{
9
    /** @var object */
10
    private $body;
11
12 4
    /** @var Validator */
13
    private $validator;
14 4
15 4
    public function __construct($body, Validator $validator = null)
16 4
    {
17
        $this->body = (object) $body;
18 1
        $this->validator = $validator ?: new Validator();
19
    }
20 1
21
    public function getPropertyPaths(): array
22 1
    {
23 1
        $paths = [];
24 1
25
        foreach ($this->body->properties as $propertyName => $property) {
26 1
            $paths[] = sprintf("/%s", $propertyName);
27
        }
28
29 2
        return $paths;
30
    }
31 2
32
    public function normalizeObject($subject, array $aliases): \stdClass
33 2
    {
34 2
        $out = new \stdClass;
35 2
36 2
        foreach ($this->body->properties as $propertyName => $property) {
37 2
            $name = $aliases[$propertyName] ?? $propertyName;
38 2
39 2
            if (isset($property->readOnly) && $property->readOnly === true) {
40 1
                continue;
41 1
            } elseif (property_exists($subject, $name)) {
42 2
                $out->$propertyName = $subject->$name;
43
            } elseif (property_exists($subject, $propertyName)) {
44 2
                $out->$propertyName = $subject->$propertyName;
45
            }
46
        }
47 2
48
        return $out;
49 2
    }
50 2
51
    public function validate($data)
52 2
    {
53
        $this->validator->check($data, $this->body);
54 2
    }
55
56
    public function isValid(): bool
57 3
    {
58
        return $this->validator->isValid();
59 3
    }
60
61
    public function getErrors(): array
62 2
    {
63
        return $this->validator->getErrors();
64 2
    }
65
66 2
    public function getErrorString(): string
67 2
    {
68 2
        $msg = "Provided values do not validate. Errors:\n";
69
70 2
        foreach ($this->getErrors() as $error) {
71
            $msg .= sprintf("[%s] %s\n", $error['property'], $error['message']);
72
        }
73
74
        return $msg;
75
    }
76
}
77