| Conditions | 4 |
| Paths | 4 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 54 | 1 | public function supportsUrlType(string $urlType): bool |
|
| 55 | { |
||
| 56 | 1 | $supported = false; |
|
| 57 | |||
| 58 | 1 | switch (strtolower($urlType)) { |
|
| 59 | 1 | case 'internalurl': |
|
| 60 | 1 | case 'publicurl': |
|
| 61 | 1 | case 'adminurl': |
|
| 62 | 1 | $supported = true; |
|
| 63 | 1 | break; |
|
| 64 | 1 | } |
|
| 65 | |||
| 66 | 1 | return $supported; |
|
| 67 | } |
||
| 68 | |||
| 95 |