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 ( db0197...4ce89b )
by Cees-Jan
8s
created

src/Resource/Async/EnvironmentVariable.php (2 issues)

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
declare(strict_types=1);
3
4
namespace WyriHaximus\Travis\Resource\Async;
5
6
use WyriHaximus\Travis\Resource\EnvironmentVariable as BaseEnvironmentVariable;
7
8
class EnvironmentVariable extends BaseEnvironmentVariable
9
{
10
    public function refresh() : EnvironmentVariable
11
    {
12
        return $this->wait($this->callAsync('refresh'));
0 ignored issues
show
The method callAsync() does not seem to exist on object<WyriHaximus\Travi...nc\EnvironmentVariable>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
The method wait() does not seem to exist on object<WyriHaximus\Travi...nc\EnvironmentVariable>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
13
    }
14
}
15