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.
Completed
Push — master ( ae1e4e...bda4f4 )
by Nicholas
07:56
created

Mapping::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 2
1
<?php
2
3
namespace UCD\Unicode\Character\Properties\LetterCase;
4
5
use UCD\Unicode\Codepoint;
6
7
class Mapping
8
{
9
    /**
10
     * @var Codepoint
11
     */
12
    private $simple;
13
14
    /**
15
     * @var Codepoint[]
16
     */
17
    private $standard;
18
19
    /**
20
     * @param Codepoint $simple
21
     * @param Codepoint[] $standard
22
     */
23
    public function __construct(Codepoint $simple, array $standard)
24
    {
25
        $this->simple = $simple;
26
        $this->standard = $standard;
27
    }
28
29
    /**
30
     * @return Codepoint
31
     */
32
    public function getSimple()
33
    {
34
        return $this->simple;
35
    }
36
37
    /**
38
     * @return Codepoint\Collection|Codepoint[]
39
     */
40
    public function getStandard()
41
    {
42
        return Codepoint\Collection::fromArray(
43
            $this->standard
44
        );
45
    }
46
}