Completed
Push — master ( f30a93...2b3d30 )
by Tim
02:07
created

QuarterViewHelper::render()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * Uri to the quarter.
5
 */
6
declare(strict_types=1);
7
8
namespace HDNET\Calendarize\ViewHelpers\Uri;
9
10
/**
11
 * Uri to the quarter.
12
 */
13
class QuarterViewHelper extends \HDNET\Calendarize\ViewHelpers\Link\QuarterViewHelper
14
{
15
    /**
16
     * Render the uri to the given quarter.
17
     *
18
     * @return string
19
     */
20
    public function render()
21
    {
22
        parent::render();
23
24
        return $this->lastHref;
25
    }
26
}
27