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.

MethodNameChecker   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
namespace Inspector\Analysis\Checker\Naming;
4
5
use PhpParser\Node;
6
use Inspector\Application\Exception\Exception;
7
use Inspector\Analysis\Checker\CheckerInterface;
8
use Inspector\Analysis\Exception\AnalysisException;
9
10
11
/**
12
 * @author Kabir Baidhya
13
 */
14
class MethodNameChecker implements CheckerInterface
15
{
16
17
    /**
18
     * Checks to make sure the classes, methods, and functions are up to the standards
19
     * and don't use bad practices
20
     *
21
     * @param Node $node
22
     * @throws Exception
23
     * @throws AnalysisException
24
     */
25
    public function check(Node $node)
26
    {
27
28
    }
29
}
30