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 ( e97bb7...5f2eb5 )
by Pascal
10:40 queued 09:38
created

CheckerHasRecovered   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace ProtoneMedia\ApiHealth\Events;
4
5
use ProtoneMedia\ApiHealth\Checkers\Checker;
6
7
class CheckerHasRecovered
8
{
9
    /**
10
     * The checker.
11
     *
12
     * @var \ProtoneMedia\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 \ProtoneMedia\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