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 ( 37812c...412ce5 )
by Freek
03:22 queued 10s
created

src/Console/InstallCommand.php (1 issue)

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 Spatie\WebTinker\Console;
4
5
use Illuminate\Console\Command;
6
use Illuminate\Console\DetectsApplicationNamespace;
7
8
class InstallCommand extends Command
9
{
10
    use DetectsApplicationNamespace;
0 ignored issues
show
Deprecated Code introduced by
The trait Illuminate\Console\DetectsApplicationNamespace has been deprecated with message: Usage of this trait is deprecated and it will be removed in Laravel 7.0.

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
11
12
    protected $signature = 'web-tinker:install';
13
14
    protected $description = 'Install all of the Web Tinker resources';
15
16
    public function handle()
17
    {
18
        $this->comment('Publishing Web Tinker Assets...');
19
20
        $this->callSilent('vendor:publish', ['--tag' => 'web-tinker-assets']);
21
22
        $this->info('Web tinker installed successfully.');
23
    }
24
}
25