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

src/BuildMatrix.php (1 issue)

Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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
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