ExtendableFeature   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * @author stev leibelt <[email protected]>
4
 * @since 2013-06-26 
5
 */
6
7
namespace Example\Table\Items;
8
9
/**
10
 * Class ExtendableFeature
11
 *
12
 * @package Example\Table\Items
13
 * @author stev leibelt <[email protected]>
14
 * @since 2013-06-26
15
 */
16
class ExtendableFeature extends Feature
17
{
18
    /**
19
     * @author stev leibelt <[email protected]>
20
     * @since 2013-06-26
21
     */
22
    public function __construct()
23
    {
24
        $this->expectedFeature = 'extendable';
25
    }
26
}