Skip to content

Commit 9b8ae87

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Add missing dots at the end of exception messages
2 parents 59964cd + 592df3f commit 9b8ae87

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
@@ -77,7 +77,7 @@ public function &get(string $name)
7777
while ($segments) {
7878
$path = array_shift($segments);
7979
if (!\is_array($target) || !\array_key_exists($path, $target)) {
80-
throw new \InvalidArgumentException(sprintf('Unreachable field "%s"', $path));
80+
throw new \InvalidArgumentException(sprintf('Unreachable field "%s".', $path));
8181
}
8282
$target = &$target[$path];
8383
}

0 commit comments

Comments
 (0)