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
Pull Request — master (#42)
by
unknown
01:53
created

classB   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 2
Bugs 0 Features 2
Metric Value
dl 0
loc 11
rs 10
c 2
b 0
f 2
wmc 1
lcom 0
cbo 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace namespaceA;
4
5
class classA {
6
7
}
8
9
namespace namespaceC\namespaceD;
10
11
class classD {
12
13
}
14
15
namespace namespaceB;
16
17
use namespaceA\classA as classC;
18
use namespaceC\namespaceD as namespaceDAlias;
19
20
class classB {
21
22
    private $_objectA;
23
24
    private $_objectB;
25
26
    public function __construct() {
27
        $this->_objectA = new classC();
28
        $this->_objectB = new namespaceDAlias\classD();
29
    }
30
}
31
32