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.

SkeletonClass::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace League\Skeleton;
6
7
class SkeletonClass
8
{
9
    /**
10
     * Create a new Skeleton Instance
11
     */
12
    public function __construct()
13
    {
14
        // constructor body
15
    }
16
17
    /**
18
     * Friendly welcome
19
     *
20
     * @param string $phrase Phrase to return
21
     *
22
     * @return string Returns the phrase passed in
23
     */
24
    public function echoPhrase(string $phrase): string
25
    {
26
        return $phrase;
27
    }
28
}
29