CommandNotFoundException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 6
ccs 2
cts 2
cp 1
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Ballen\Clip\Exceptions;
4
5
/**
6
 * Clip
7
 * 
8
 * A package for speeding up development of PHP console (CLI) applications.
9
 *
10
 * @author Bobby Allen <[email protected]>
11
 * @license https://raw.githubusercontent.com/bobsta63/clip/master/LICENSE
12
 * @link https://github.com/bobsta63/clip
13
 * @link http://www.bobbyallen.me
14
 *
15
 */
16
class CommandNotFoundException extends \Exception
17
{
18
19 4
    public function __construct($message, $code = 0, Exception $previous = null)
0 ignored issues
show
Bug introduced by
The type Ballen\Clip\Exceptions\Exception was not found. Did you mean Exception? If so, make sure to prefix the type with \.
Loading history...
20
    {
21 4
        parent::__construct($message, $code, $previous);
22
    }
23
}
24