UserCleanerConsoleCommand::execute()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace App\Consoles;
4
5
use Micro\Cli\ConsoleCommand;
6
7
/**
8
 * Class UserCleanerConsoleCommand
9
 * @package App\Consoles
10
 */
11
class UserCleanerConsoleCommand extends ConsoleCommand
12
{
13
    /**
14
     *
15
     */
16
    public function execute()
17
    {
18
        $this->message = 'Hello, world!' . "\n";
19
        $this->result = true;
20
    }
21
}
22