Skip to content

Commit f144be1

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fix more quotes in exception messages Fix more quotes in exception messages [3.4] Minor fixes [PropertyAccess] Improved errors when reading uninitialized properties
2 parents bc31666 + 07ad590 commit f144be1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/FrameworkExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ private function registerTranslatorConfiguration(array $config, ContainerBuilder
10851085
if ($container->fileExists($dir)) {
10861086
$dirs[] = $transPaths[] = $dir;
10871087
} else {
1088-
throw new \UnexpectedValueException(sprintf('%s defined in translator.paths does not exist or is not a directory.', $dir));
1088+
throw new \UnexpectedValueException(sprintf('"%s" defined in translator.paths does not exist or is not a directory.', $dir));
10891089
}
10901090
}
10911091

0 commit comments

Comments
 (0)