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.

ClassNameChecker   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A check() 0 4 1
1
<?php
2
3
4
namespace Inspector\Analysis\Checker\Naming;
5
6
use PhpParser\Node;
7
use Inspector\Application\Exception\Exception;
8
use Inspector\Analysis\Checker\CheckerInterface;
9
use Inspector\Analysis\Exception\AnalysisException;
10
11
12
/**
13
 * @author Kabir Baidhya
14
 */
15
class ClassNameChecker implements CheckerInterface
16
{
17
18
    /**
19
     * Checks to make sure the classes, methods, and functions are up to the standards
20
     * and don't use bad practices
21
     *
22
     * @param Node $node
23
     * @throws Exception
24
     * @throws AnalysisException
25
     */
26
    public function check(Node $node)
27
    {
28
29
    }
30
}
31