Completed
Pull Request — 3.x (#586)
by Sullivan
04:32 queued 01:11
created

AssociatedEntity::getPlainField()   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 Sonata\DoctrineORMAdminBundle\Tests\Fixtures\Entity;
4
5
class AssociatedEntity
6
{
7
    /**
8
     * @var int
9
     */
10
    protected $plainField;
11
12
    /**
13
     * AssociatedEntity constructor.
14
     *
15
     * @param int $plainField
16
     */
17
    public function __construct($plainField = null)
18
    {
19
        $this->plainField = $plainField;
20
    }
21
22
    /**
23
     * @return int
24
     */
25
    public function getPlainField()
26
    {
27
        return $this->plainField;
28
    }
29
}
30