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.

Issues (14)

routes/console.php (1 issue)

1
<?php
2
3
use Illuminate\Foundation\Inspiring;
4
5
/*
6
|--------------------------------------------------------------------------
7
| Console Routes
8
|--------------------------------------------------------------------------
9
|
10
| This file is where you may define all of your Closure based console
11
| commands. Each Closure is bound to a command instance allowing a
12
| simple approach to interacting with each command's IO methods.
13
|
14
*/
15
16
Artisan::command('inspire', function () {
17
    $this->comment(Inspiring::quote());
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $this seems to be never defined.
Loading history...
18
})->describe('Display an inspiring quote');
19