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 ( 412ce5...411a6d )
by Freek
26s queued 11s
created

src/Shell/Shell.php (3 issues)

references properties can be accessed from the calling context.

Bug Major

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 Spatie\WebTinker\Shell;
4
5
use Psy\Shell as PsyShell;
6
7
class Shell extends PsyShell
8
{
9
    protected function readline()
10
    {
11
        if (!empty($this->inputBuffer)) {
0 ignored issues
show
The property inputBuffer cannot be accessed from this context as it is declared private in class Psy\Shell.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
12
            $line = \array_shift($this->inputBuffer);
0 ignored issues
show
The property inputBuffer cannot be accessed from this context as it is declared private in class Psy\Shell.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
13
            if (!$line instanceof SilentInput) {
14
                $this->output->writeln(\sprintf('<aside>%s %s</aside>', static::REPLAY, OutputFormatter::escape($line)));
0 ignored issues
show
The property output cannot be accessed from this context as it is declared private in class Psy\Shell.

This check looks for access to properties that are not accessible from the current context.

If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.

Loading history...
15
            }
16
17
            return $line;
18
        }
19
20
        return false;
21
    }
22
}
23