Failed Conditions
Push — master ( 5e6761...398dce )
by Adrien
04:14 queued 01:57
created

HasInternalRemarks::getInternalRemarks()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
cc 1
rs 10
ccs 0
cts 3
cp 0
crap 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Ecodev\Felix\Model\Traits;
6
7
trait HasInternalRemarks
8
{
9
    /**
10
     * @var string
11
     *
12
     * @ORM\Column(type="text", length=65535)
13
     */
14
    private $internalRemarks = '';
15
16
    /**
17
     * Set internalRemarks
18
     *
19
     * @param string $internalRemarks
20
     */
21
    public function setInternalRemarks(string $internalRemarks): void
22
    {
23
        $this->internalRemarks = $internalRemarks;
24
    }
25
26
    /**
27
     * Get internalRemarks
28
     *
29
     * @return string
30
     */
31
    public function getInternalRemarks(): string
32
    {
33
        return $this->internalRemarks;
34
    }
35
}
36