Nav::getTitle()   A
last analyzed

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
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
/**
4
 * @author    Markus Tacker <[email protected]>
5
 * @copyright 2013-2016 Verein zur Förderung der Netzkultur im Rhein-Main-Gebiet e.V. | http://netzkultur-rheinmain.de/
6
 */
7
8
namespace BCRM\WebBundle\Content;
9
10
class Nav
11
{
12
    /**
13
     * @var string
14
     */
15
    protected $title;
16
17
    /**
18
     * @var string
19
     */
20
    protected $path;
21
22
    /**
23
     * @return string
24
     */
25
    public function getPath()
26
    {
27
        return $this->path;
28
    }
29
30
    /**
31
     * @param string $path
32
     */
33
    public function setPath($path)
34
    {
35
        $this->path = $path;
36
    }
37
38
    /**
39
     * @return string
40
     */
41
    public function getTitle()
42
    {
43
        return $this->title;
44
    }
45
46
    /**
47
     * @param string $title
48
     */
49
    public function setTitle($title)
50
    {
51
        $this->title = $title;
52
    }
53
54
55
}
56