ApiWatcher::configure()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * @author    jan huang <[email protected]>
4
 * @copyright 2017
5
 *
6
 * @see      https://www.github.com/janhuang
7
 * @see      http://www.fast-d.cn/
8
 */
9
10
namespace FastD\Console;
11
12
use Symfony\Component\Console\Command\Command;
13
use Symfony\Component\Console\Input\InputInterface;
14
use Symfony\Component\Console\Output\OutputInterface;
15
16
/**
17
 * Class Testing.
18
 */
19
class ApiWatcher extends Command
20
{
21
    protected function configure()
22
    {
23
        parent::configure(); // TODO: Change the autogenerated stub
24
    }
25
26
    public function execute(InputInterface $input, OutputInterface $output)
27
    {
28
        parent::execute($input, $output); // TODO: Change the autogenerated stub
29
    }
30
}
31