Completed
Push — master ( 04eb0b...d074da )
by Tim
02:06
created

BookingViewHelper   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A render() 0 6 1
1
<?php
2
3
/**
4
 * Uri to the booking.
5
 */
6
declare(strict_types=1);
7
8
namespace HDNET\Calendarize\ViewHelpers\Uri;
9
10
/**
11
 * Uri to the booking.
12
 */
13
class BookingViewHelper extends \HDNET\Calendarize\ViewHelpers\Link\BookingViewHelper
14
{
15
    /**
16
     * Render the uri to the given day.
17
     *
18
     * @return string
19
     */
20
    public function render()
21
    {
22
        parent::render();
23
24
        return $this->lastHref;
25
    }
26
}
27