UserCleanerConsoleCommand   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 1
cbo 1
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A execute() 0 5 1
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