Test Failed
Push — stable ( cb1f97...b2434c )
by Nuno
01:59
created

FakeDefaultCommand::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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