GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Divider::getHref()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
/**
4
 * "Fake" Navigation Page to add a divider in the Menu.
5
 *
6
 * @author     Leandro Silva <[email protected]>
7
 *
8
 * @category   LosUi
9
 *
10
 * @license    https://github.com/Lansoweb/LosUi/blob/master/LICENSE MIT License
11
 *
12
 * @link       http://github.com/LansoWeb/LosUi
13
 */
14
namespace LosUi\Navigation\Page;
15
16
use Zend\Navigation\Page\AbstractPage;
17
18
/**
19
 * "Fake" Navigation Page to add a divider in the Menu.
20
 *
21
 * @author     Leandro Silva <[email protected]>
22
 *
23
 * @category   LosUi
24
 *
25
 * @license    https://github.com/Lansoweb/LosUi/blob/master/LICENSE MIT License
26
 *
27
 * @link       http://github.com/LansoWeb/LosUi
28
 */
29
class Divider extends AbstractPage
30
{
31
    /**
32
     * (non-PHPdoc).
33
     *
34
     * @see \Zend\Navigation\Page\AbstractPage::getHref()
35
     */
36
    public function getHref()
37
    {
38
        return '';
39
    }
40
}
41