Completed
Push — master ( 3b4c29...cea3ad )
by Maxime
01:41
created

RouteListCommand::execute()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
namespace Piface\Router\Command;
4
5
use Symfony\Component\Console\Command\Command;
6
use Symfony\Component\Console\Input\InputInterface;
7
use Symfony\Component\Console\Output\OutputInterface;
8
9
class RouteListCommand extends Command
10
{
11
    protected static $defaultName = 'route:list';
12
13
    protected function configure()
14
    {
15
        $this->setDescription('List of routes.');
16
    }
17
18
    protected function execute(InputInterface $input, OutputInterface $output)
19
    {
20
        $output->writeln(["Route list :"]);
21
    }
22
}
23