Completed
Push — master ( 38c8ff...90c00b )
by Dmitry
01:29
created

UnknownCommandException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 3 1
1
<?php
2
3
namespace PHPKitchen\Platform\Exception\CLI;
4
5
use PHPKitchen\Platform\Exception\Common\UserException;
6
7
/**
8
 * Represents
9
 *
10
 * @package PHPKitchen\Platform\Exception\CLI
11
 * @author Dmitry Kolodko <[email protected]>
12
 */
13
class UnknownCommandException extends UserException {
14
    public function getName() {
15
        return 'Unknown Command';
16
    }
17
}