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

Mappings::getFolding()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace UCD\Unicode\Character\Properties\LetterCase;
4
5
use UCD\Unicode\Codepoint;
6
7
class Mappings
8
{
9
    /**
10
     * @var Mapping
11
     */
12
    private $lowercase;
13
14
    /**
15
     * @var Mapping
16
     */
17
    private $uppercase;
18
19
    /**
20
     * @var Mapping
21
     */
22
    private $titlecase;
23
24
    /**
25
     * @var Mapping
26
     */
27
    private $folding;
28
29
    /**
30
     * @param Mapping $lowercase
31
     * @param Mapping $uppercase
32
     * @param Mapping $titlecase
33
     * @param Mapping $folding
34
     */
35
    public function __construct(
36
        Mapping $lowercase,
37
        Mapping $uppercase,
38
        Mapping $titlecase,
39
        Mapping $folding
40
    ) {
41
        $this->lowercase = $lowercase;
42
        $this->uppercase = $uppercase;
43
        $this->titlecase = $titlecase;
44
        $this->folding = $folding;
45
    }
46
47
    /**
48
     * @return Mapping
49
     */
50
    public function getLowercase()
51
    {
52
        return $this->lowercase;
53
    }
54
55
    /**
56
     * @return Mapping
57
     */
58
    public function getUppercase()
59
    {
60
        return $this->uppercase;
61
    }
62
63
    /**
64
     * @return Mapping
65
     */
66
    public function getTitlecase()
67
    {
68
        return $this->titlecase;
69
    }
70
71
    /**
72
     * @return Mapping
73
     */
74
    public function getFolding()
75
    {
76
        return $this->folding;
77
    }
78
}