Completed
Push — master ( dd8846...82fafa )
by Amine
03:04
created

HelloWorld   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A init() 0 6 1
A execute() 0 6 1
1
<?php namespace Tarsana\Command\Examples;
2
3
use Tarsana\Command\Command;
4
5
class HelloWorld extends Command {
6
7
    protected function init ()
8
    {
9
        $this->name('Hello World')
10
             ->version('1.0.0-alpha')
11
             ->description('Shows a "Hello World" message');
12
    }
13
14
    protected function execute()
15
    {
16
        $this->console->out('Your name: ');
17
        $name = $this->console->readLine();
18
        $this->console->line("Hello {$name}");
19
    }
20
21
}
22