Skip to content

Commit b62acca

Browse files
committed
[Routing] Fix XmlFileLoader exception message
1 parent 2becb03 commit b62acca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Loader/XmlFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ private function parseConfigs(\DOMElement $node, $path)
250250
$condition = trim($n->textContent);
251251
break;
252252
default:
253-
throw new \InvalidArgumentException(sprintf('Unknown tag "%s" used in file "%s". Expected "default", "requirement" or "option".', $n->localName, $path));
253+
throw new \InvalidArgumentException(sprintf('Unknown tag "%s" used in file "%s". Expected "default", "requirement", "option" or "condition".', $n->localName, $path));
254254
}
255255
}
256256

0 commit comments

Comments
 (0)