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

FakeExtraCommand   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 Method

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