Completed
Push — master ( 6a4b58...d898c6 )
by
unknown
02:34
created

Design::getTemplatePath()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace AcquiroPay\Models\Entities;
6
7
class Design extends Entity
8
{
9
    private $status;
10
    private $name;
11
    private $description;
12
    private $templatePath;
13
    private $layoutName;
14
15
    public function getStatus(): string
16
    {
17
        return $this->status;
18
    }
19
20
    public function setStatus(string $status)
21
    {
22
        $this->status = $status;
23
    }
24
25
    public function getDescription(): ?string
26
    {
27
        return $this->description;
28
    }
29
30
    public function setDescription(?string $description)
31
    {
32
        $this->description = $description;
33
    }
34
35
    public function getName(): ?string
36
    {
37
        return $this->name;
38
    }
39
40
    public function setName(?string $name)
41
    {
42
        $this->name = $name;
43
    }
44
45
    public function getTemplatePath(): ?string
46
    {
47
        return $this->templatePath;
48
    }
49
50
    public function setTemplatePath(?string $templatePath)
51
    {
52
        $this->templatePath = $templatePath;
53
    }
54
55
    public function getLayoutName(): ?string
56
    {
57
        return $this->layoutName;
58
    }
59
60
    public function setLayoutName(?string $layoutName)
61
    {
62
        $this->layoutName = $layoutName;
63
    }
64
}
65