Completed
Pull Request — master (#14)
by Pavel
04:42
created

SubEntity   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 23
c 0
b 0
f 0
wmc 2
lcom 0
cbo 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getStringPayload() 0 4 1
A getSubPayload() 0 4 1
1
<?php
2
3
namespace Bankiru\Api\Doctrine\Test\Entity\Sub;
4
5
use Bankiru\Api\Doctrine\Test\Entity\TestEntity;
6
7
class SubEntity extends TestEntity
8
{
9
    /** @var  string */
10
    private $subPayload;
11
    /** @var  string|null */
12
    private $stringPayload;
13
14
    /**
15
     * @return string|null
16
     */
17
    public function getStringPayload()
18
    {
19
        return $this->stringPayload;
20
    }
21
22
    /**
23
     * @return string
24
     */
25
    public function getSubPayload()
26
    {
27
        return $this->subPayload;
28
    }
29
}
30