Test Failed
Push — stable ( 3dce26...5f781e )
by Nuno
04:12
created

FakeOtherCommand::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
1
<?php
2
3
namespace App\OtherCommands;
4
5
use LaravelZero\Framework\Commands\Command;
6
7
class FakeOtherCommand extends Command
8
{
9
    /**
10
     * The name of the console command.
11
     *
12
     * @var string
13
     */
14
    protected $name = 'fake:other';
15
16
    /**
17
     * {@inheritdoc}
18
     */
19
    public function handle(): void
20
    {
21
        $this->info('Foo bar');
22
    }
23
}
24