Completed
Push — master ( d773f4...3b2c4b )
by Oscar
04:15
created

RelationMany   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
1
<?php
2
3
namespace Folk\Formats;
4
5
use FormManager\Fields;
6
use FormManager\Elements;
7
use FormManager\Builder;
8
use Folk\Entities\EntityInterface;
9
10
class RelationMany extends RelationOne
11
{
12
    public function __construct(Builder $builder, EntityInterface $related)
13
    {
14
        parent::__construct($builder, $related);
15
16
        $this->input->multiple();
17
    }
18
}
19