Completed
Pull Request — master (#671)
by Antonio
04:15 queued 01:16
created

FirstCustomCommands::commandTwo()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace Robo\Commands;
4
5
/**
6
 * Class FirstCustomCommands
7
 *
8
 * @package Robo\Commands
9
 */
10
class FirstCustomCommands
11
{
12
    /**
13
     * @command custom:command-one
14
     */
15
    public function commandOne()
16
    {
17
    }
18
19
    /**
20
     * @command custom:command-two
21
     */
22
    public function commandTwo()
23
    {
24
    }
25
}
26