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

RepeatCommand::execute()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 5
nc 2
nop 0
1
<?php namespace Tarsana\Command\Examples;
2
3
use Tarsana\Command\Command;
4
5
class RepeatCommand extends Command {
6
7
    protected function init ()
8
    {
9
        $this->name('Repeat')
10
             ->version('1.0.0')
11
             ->description('Repeats a word a number of times')
12
             ->syntax('word: string, count: (number: 3)')
13
             ->options(['--upper'])
14
             ->describe('word', 'The word to repeat')
15
             ->describe('count', 'The number of times to repeat the word')
16
             ->describe('--upper', 'Converts the result to uppercase');
17
    }
18
19
    protected function execute()
20
    {
21
        $result = str_repeat($this->args->word, $this->args->count);
22
        if ($this->option('--upper'))
23
            $result = strtoupper($result);
24
        $this->console->line($result);
25
    }
26
27
}
28