Completed
Push — master ( e1ea0b...a3d6f2 )
by WEBEWEB
02:00
created

NavigationTree::activeNodes()   B

Complexity

Conditions 9
Paths 8

Size

Total Lines 46

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 46
rs 7.6226
c 0
b 0
f 0
cc 9
nc 8
nop 3
1
<?php
2
3
/**
4
 * This file is part of the bootstrap-bundle package.
5
 *
6
 * (c) 2017 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Bundle\BootstrapBundle\Navigation;
13
14
/**
15
 * Navigation tree.
16
 *
17
 * @author webeweb <https://github.com/webeweb/>
18
 * @package WBW\Bundle\BootstrapBundle\Navigation
19
 */
20
class NavigationTree extends AbstractNavigationNode {
21
22
    /**
23
     * Constructor.
24
     *
25
     * @param $name The name.
26
     */
27
    public function __construct($name) {
28
        parent::__construct($name);
29
    }
30
31
}
32