Skip to content

Commit 592df3f

Browse files
committed
Add missing dots at the end of exception messages
1 parent be62808 commit 592df3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FormFieldRegistry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public function &get($name)
8181
while ($segments) {
8282
$path = array_shift($segments);
8383
if (!\is_array($target) || !\array_key_exists($path, $target)) {
84-
throw new \InvalidArgumentException(sprintf('Unreachable field "%s"', $path));
84+
throw new \InvalidArgumentException(sprintf('Unreachable field "%s".', $path));
8585
}
8686
$target = &$target[$path];
8787
}

0 commit comments

Comments
 (0)