Removal   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 3
Bugs 0 Features 1
Metric Value
wmc 1
c 3
b 0
f 1
lcom 0
cbo 1
dl 0
loc 7
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * This file is part of the Totem package
4
 *
5
 * For the full copyright and license information, please view the LICENSE file
6
 * that was distributed with this source code.
7
 *
8
 * @copyright Baptiste Clavié <[email protected]>
9
 * @license   http://www.opensource.org/licenses/MIT-License MIT License
10
 */
11
12
namespace Totem\Change;
13
14
use Totem\AbstractChange;
15
16
/**
17
 * Represents something that was removed from the original data
18
 *
19
 * @author Baptiste Clavié <[email protected]>
20
 */
21
class Removal extends AbstractChange
22
{
23
    public function __construct($old)
24
    {
25
        parent::__construct($old, null);
26
    }
27
}
28
29