TestEntity   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 39
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 6
lcom 0
cbo 0
dl 0
loc 39
rs 10
c 0
b 0
f 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getFirstProperty() 0 4 1
A setFirstProperty() 0 4 1
A getSecondProperty() 0 4 1
A setSecondProperty() 0 4 1
A getFirstAssociation() 0 4 1
A setFirstAssociation() 0 4 1
1
<?php
2
3
namespace Ddeboer\DataImport\Tests\Fixtures\Entity;
4
5
class TestEntity
6
{
7
    private $firstProperty;
8
9
    private $secondProperty;
10
11
    private $firstAssociation;
12
13
    public function getFirstProperty()
14
    {
15
        return $this->firstProperty;
16
    }
17
18
    public function setFirstProperty($firstProperty)
19
    {
20
        $this->firstProperty = $firstProperty;
21
    }
22
23
    public function getSecondProperty()
24
    {
25
        return $this->secondProperty;
26
    }
27
28
    public function setSecondProperty($secondProperty)
29
    {
30
        $this->secondProperty = $secondProperty;
31
    }
32
33
    public function getFirstAssociation() 
34
    {
35
        return $this->firstAssociation;
36
    }
37
38
    public function setFirstAssociation($firstAssociation)
39
    {
40
        $this->firstAssociation = $firstAssociation;
41
    }
42
43
}
44