Completed
Push — master ( 8e3b2f...ffac26 )
by Michał
04:23
created

Definitions::getDefaultValues()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 13
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 13
rs 9.4285
c 0
b 0
f 0
cc 3
eloc 5
nc 3
nop 0
1
<?php namespace nyx\console\input\parameter;
2
3
// External dependencies
4
use nyx\core;
5
6
/**
7
 * Input Parameter Definitions
8
 *
9
 * @version     0.1.0
10
 * @author      Michal Chojnacki <[email protected]>
11
 * @copyright   2012-2017 Nyx Dev Team
12
 * @link        https://github.com/unyx/nyx
13
 */
14
abstract class Definitions extends core\collections\NamedObjectSet
15
{
16
17
}
18