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

QuarterViewHelper   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A render() 0 6 1
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