Skip to content

Commit 07ad590

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

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
@@ -1196,7 +1196,7 @@ private function registerTranslatorConfiguration(array $config, ContainerBuilder
11961196
if ($container->fileExists($dir)) {
11971197
$dirs[] = $transPaths[] = $dir;
11981198
} else {
1199-
throw new \UnexpectedValueException(sprintf('%s defined in translator.paths does not exist or is not a directory.', $dir));
1199+
throw new \UnexpectedValueException(sprintf('"%s" defined in translator.paths does not exist or is not a directory.', $dir));
12001200
}
12011201
}
12021202

0 commit comments

Comments
 (0)