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.

Joining::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 4
nc 1
nop 3
1
<?php
2
3
namespace UCD\Unicode\Character\Properties\Shaping;
4
5
class Joining
6
{
7
    /**
8
     * @var JoiningGroup
9
     */
10
    private $group;
11
    /**
12
     * @var JoiningType
13
     */
14
    private $type;
15
16
    /**
17
     * @var bool
18
     */
19
    private $joinControl;
20
21
    /**
22
     * @param JoiningGroup $group
23
     * @param JoiningType $type
24
     * @param bool $joinControl
25
     */
26
    public function __construct(JoiningGroup $group, JoiningType $type, $joinControl)
27
    {
28
        $this->group = $group;
29
        $this->type = $type;
30
        $this->joinControl = $joinControl;
31
    }
32
33
    /**
34
     * @return JoiningGroup
35
     */
36
    public function getGroup()
37
    {
38
        return $this->group;
39
    }
40
41
    /**
42
     * @return JoiningType
43
     */
44
    public function getType()
45
    {
46
        return $this->type;
47
    }
48
49
    /**
50
     * @return boolean
51
     */
52
    public function isJoinControl()
53
    {
54
        return $this->joinControl;
55
    }
56
}