[FrameworkBundle] Fixed typo

This commit is contained in:
Artur Kotyrba 2011-05-08 21:02:16 +02:00
parent f3b077a0dd
commit 1985333583

View File

@ -59,7 +59,7 @@ class Translator extends BaseTranslator
// check option names // check option names
if ($diff = array_diff(array_keys($options), array_keys($this->options))) { if ($diff = array_diff(array_keys($options), array_keys($this->options))) {
throw new \InvalidArgumentException(sprintf('The Router does not support the following options: \'%s\'.', implode('\', \'', $diff))); throw new \InvalidArgumentException(sprintf('The Translator does not support the following options: \'%s\'.', implode('\', \'', $diff)));
} }
$this->options = array_merge($this->options, $options); $this->options = array_merge($this->options, $options);