| Total Complexity | 2 | 
| Total Lines | 10 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 0 | ||
| 1 | <?php | ||
| 18 | class TemplateCanNotBeExpanded extends \InvalidArgumentException implements UriException | ||
| 19 | { | ||
| 20 | 4 | public static function dueToUnableToProcessValueListWithPrefix(string $variableName): self | |
| 21 |     { | ||
| 22 | 4 |         return new self('The ":" modifier can not be applied on "'.$variableName.'" since it is a list of values.'); | |
| 23 | } | ||
| 24 | |||
| 25 | 2 | public static function dueToNestedListOfValue(string $variableName): self | |
| 28 | } | ||
| 29 | } | ||
| 30 |