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 — master ( ba5dd9...0941c5 )
by Freek
05:40 queued 03:52
created

SkeletonClass::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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