Test Setup Failed
Push — master ( de81f2...3dc847 )
by Tomasz
02:50
created

Model   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * Copyright
4
 */
5
namespace Hexarchium\CoreDomain\Model\Model\Entity;
6
7
8
use Hexarchium\CoreDomain\Aggregate\AbstractAggregateRoot;
9
use Hexarchium\CoreDomain\Model\Model\ModelId;
10
11
class Model extends AbstractAggregateRoot
12
{
13
    /**
14
     * Model constructor.
15
     *
16
     * @param ModelId $id
17
     */
18
    public function __construct(ModelId $id)
19
    {
20
        parent::__construct($id);
21
    }
22
}