Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 60% |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
12 | trait UrlMethodsTrait |
||
13 | { |
||
14 | /** |
||
15 | * Get the full url to a original media file. |
||
16 | * |
||
17 | * @param string $conversionName |
||
18 | * |
||
19 | * @return string |
||
20 | */ |
||
21 | public function getFullUrl(string $conversionName = ''): string |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Get the url to a original media file. |
||
28 | * |
||
29 | * @param string $conversionName |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | 1 | public function getUrl(string $conversionName = '') |
|
39 |