Test Failed
Push — stable ( 994ca0...7d5c83 )
by Nuno
04:30
created

FakeFooCommand   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 17
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1
1
<?php
2
3
namespace App\Commands;
4
5
use LaravelZero\Framework\Commands\Command;
6
7
class FakeFooCommand extends Command
8
{
9
    protected $name = 'fake:foo';
10
11
    public function handle()
12
    {
13
        $this->info('Foo bar');
14
    }
15
}
16