Completed
Push — stable ( 386c57...2cb6a4 )
by Nuno
02:05
created

FakeHiddenCommand   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 17
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 4 1
1
<?php
2
3
namespace App\HiddenCommands;
4
5
use LaravelZero\Framework\Commands\Command;
6
7
class FakeHiddenCommand extends Command
8
{
9
    /**
10
     * The name of the console command.
11
     *
12
     * @var string
13
     */
14
    protected $name = 'fake:hidden';
15
16
    /**
17
     * {@inheritdoc}
18
     */
19
    public function handle(): void
20
    {
21
        $this->info('Foo hidden');
22
    }
23
}
24