Completed
Push — dev ( fe3822...8e18b7 )
by Zach
02:29
created

DoSomething::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace App\Commands;
4
5
use Yarak\Console\Command;
6
7
class DoSomething extends Command
8
{
9
    /**
10
     * Configure the command.
11
     */
12
    protected function configure()
13
    {
14
        // configure your command here
15
    }
16
17
    /**
18
     * Handle the command.
19
     */
20
    protected function handle()
21
    {
22
        // handle your command here
23
    }
24
}
25