Dimension::getIdentifier()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * Dimension.
5
 */
6
7
namespace HDNET\Focuspoint\Domain\Model;
8
9
use HDNET\Autoloader\Annotation\DatabaseField;
10
use HDNET\Autoloader\Annotation\DatabaseTable;
11
use HDNET\Autoloader\Annotation\SmartExclude;
12
13
/**
14
 * Dimension.
15
 *
16
 * @DatabaseTable()
17
 * @SmartExclude({"EnableFields", "Language"})
18
 */
19
class Dimension extends AbstractModel
20
{
21
    /**
22
     * Title.
23
     *
24
     * @var string
25
     * @DatabaseField(type="string")
26
     */
27
    protected $title;
28
29
    /**
30
     * Identifier.
31
     *
32
     * @var string
33
     * @DatabaseField(type="string")
34
     */
35
    protected $identifier;
36
37
    /**
38
     * Dimension.
39
     *
40
     * @var string
41
     * @DatabaseField(type="string")
42
     */
43
    protected $dimension;
44
45
    /**
46
     * @return mixed
47
     */
48
    public function getTitle()
49
    {
50
        return $this->title;
51
    }
52
53
    /**
54
     * @param mixed $title
55
     */
56
    public function setTitle($title)
57
    {
58
        $this->title = $title;
59
    }
60
61
    /**
62
     * @return mixed
63
     */
64
    public function getIdentifier()
65
    {
66
        return $this->identifier;
67
    }
68
69
    /**
70
     * @param mixed $identifier
71
     */
72
    public function setIdentifier($identifier)
73
    {
74
        $this->identifier = $identifier;
75
    }
76
77
    /**
78
     * @return mixed
79
     */
80
    public function getDimension()
81
    {
82
        return $this->dimension;
83
    }
84
85
    /**
86
     * @param mixed $dimension
87
     */
88
    public function setDimension($dimension)
89
    {
90
        $this->dimension = $dimension;
91
    }
92
}
93