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 — 4.2-to-master ( ed215f )
by E
06:47
created

DeprecatedMethod   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getDrink() 0 4 1
1
<?php declare(strict_types=1);
2
3
namespace ApiGen\Tests;
4
5
class DeprecatedMethod
6
{
7
    /**
8
     * @deprecated
9
     * @return string
10
     */
11
    public function getDrink()
12
    {
13
        return 'water';
14
    }
15
}
16