Skip to content

Commit e4e7450

Browse files
committed
Merge branch '5.0'
* 5.0: Add missing dots at the end of exception messages 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 8c0e9c9 + 1fa5f91 commit e4e7450

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)