Completed
Pull Request — master (#893)
by Greg
05:57
created

ThirdCustomCommand   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A commandFive() 0 3 1
A commandSix() 0 3 1
1
<?php
2
3
namespace Robo\PluginTest\Robo\Plugin\Commands;
4
5
/**
6
 * Class ThirdCustomCommand
7
 *
8
 * @package Robo\Commands
9
 */
10
class ThirdCustomCommand
11
{
12
    /**
13
     * @command custom:command-five
14
     */
15
    public function commandFive()
16
    {
17
    }
18
19
    /**
20
     * @command custom:command-six
21
     */
22
    public function commandSix()
23
    {
24
    }
25
}
26