Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

anonymous()
last analyzed

Size

Total Lines 2
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
nc 1
nop 0
dl 0
loc 2
c 0
b 0
f 0
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