deleted mixing string concatenation inside a sprintf

This commit is contained in:
Abdellatif AitBoudad 2013-11-06 09:08:18 +00:00 committed by Fabien Potencier
parent 5b0f8787cf
commit 1727bece84

View File

@ -234,9 +234,10 @@ class PropertyAccessor implements PropertyAccessorInterface
}
throw new NoSuchPropertyException(sprintf(
'Neither the property "%s" nor one of the methods "'. implode('()", "', $methods).'() '.
'Neither the property "%s" nor one of the methods "%s()" '.
'exist and have public access in class "%s".',
$property,
implode('()", "', $methods),
$reflClass->name
));
}