| Total Complexity | 5 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | trait ForwardsHyperlinks |
||
| 11 | { |
||
| 12 | public function formatLink(string $destination): string |
||
| 13 | { |
||
| 14 | return $this->hyperlinks->formatLink($destination); |
||
| 15 | } |
||
| 16 | |||
| 17 | public function relativeLink(string $destination): string |
||
| 18 | { |
||
| 19 | return $this->hyperlinks->relativeLink($destination); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function image(string $name, bool $preferQualifiedUrl = false): string |
||
| 25 | } |
||
| 26 | |||
| 27 | public function hasSiteUrl(): bool |
||
| 30 | } |
||
| 31 | |||
| 32 | public function url(string $path = '', ?string $default = null): string |
||
| 35 | } |
||
| 36 | } |
||
| 37 |