Completed
Push — master ( 3feeea...9fb957 )
by David de
04:08
created

TestEntity::getFirstAssociation()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
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