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 ( b45687...2691f8 )
by Pascal
01:21
created

CheckerHasRecovered::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
namespace Pbmedia\ApiHealth\Events;
4
5
use Pbmedia\ApiHealth\Checkers\Checker;
6
7
class CheckerHasRecovered
8
{
9
    /**
10
     * The checker.
11
     *
12
     * @var \Pbmedia\ApiHealth\Checkers\Checker
13
     */
14
    public $checker;
15
16
    /**
17
     * The failed data.
18
     *
19
     * @var array
20
     */
21
    public $failedData;
22
23
    /**
24
     * Creates a new instance of this event.
25
     *
26
     * @param Pbmedia\ApiHealth\Checkers\Checker  $checker
27
     * @param array  $failedData
28
     */
29
    public function __construct(Checker $checker, array $failedData)
30
    {
31
        $this->checker    = $checker;
32
        $this->failedData = $failedData;
33
    }
34
}
35