Skip to content

Commit 1fa5f91

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Add missing dots at the end of exception messages [DI][Form] Fixed test suite (TimeType changes & unresolved merge conflict) Fix bad merge Add missing dots at the end of exception messages
2 parents eb564d7 + 9b8ae87 commit 1fa5f91

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)