Fix error variable name.

This commit is contained in:
Sylvain Lorinet 2012-07-05 15:21:41 +03:00
parent 73d3efb7a9
commit b9c518213d

View File

@ -54,7 +54,7 @@ class Configuration implements ConfigurationInterface
$message = 'The charset setting is deprecated. Just remove it from your configuration file.';
if ('UTF-8' !== $v) {
$messages .= sprintf(' You need to define a getCharset() method in your Application Kernel class that returns "%s".', $v);
$message .= sprintf(' You need to define a getCharset() method in your Application Kernel class that returns "%s".', $v);
}
throw new \RuntimeException($message);