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
use Illuminate\Support\Facades\Artisan;
5
6
Artisan::command('inspire', function () {
7
    $this->comment(Inspiring::quote());
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $this seems to be never defined.
Loading history...
8
})->purpose('Display an inspiring quote')->hourly();
9