ListCommand::init()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 3
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 5
rs 10
1
<?php namespace Tarsana\Command\Examples;
2
3
use Tarsana\Command\Command;
4
5
class ListCommand extends Command {
6
7
    protected function init ()
8
    {
9
        $this->name('List')
10
             ->version('1.0.0-alpha')
11
             ->description('Lists files and directories in the current directory.');
12
    }
13
14
    protected function execute()
15
    {
16
        foreach($this->fs->find('*')->asArray() as $file) {
17
            $this->console->line($file->name());
18
        }
19
    }
20
21
}
22