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 ( 71a4f9...212da1 )
by Cees-Jan
06:21
created

BuildMatrix::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 5
rs 9.4285
c 1
b 0
f 0
cc 1
eloc 3
nc 1
nop 1
1
<?php
2
3
namespace WyriHaximus\Travis;
4
5
class BuildMatrix
6
{
7
    use ClientAwareTrait;
8
9
    /**
10
     * @var string
11
     */
12
    protected $repository;
13
14
    public function __construct(Client $client)
15
    {
16
        $this->setClient($client);
17
        $this->repository = $repository;
0 ignored issues
show
Bug introduced by
The variable $repository does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
18
    }
19
20
    public function matrix()
21
    {
22
23
    }
24
}
25