Dimension   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 74
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 6
lcom 0
cbo 1
dl 0
loc 74
rs 10
c 0
b 0
f 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getTitle() 0 4 1
A setTitle() 0 4 1
A getIdentifier() 0 4 1
A setIdentifier() 0 4 1
A getDimension() 0 4 1
A setDimension() 0 4 1
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