Completed
Pull Request — 3.x (#586)
by Sullivan
03:12
created

AssociatedEntity   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getPlainField() 0 4 1
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