- Removed spaces around the concation dots to be more consitent

- adjusted some formatting
This commit is contained in:
Jan Decavele 2014-07-23 18:49:56 +02:00
parent 0459d89905
commit b0999368e2

View File

@ -43,10 +43,7 @@ class FileLoaderLoadException extends \Exception
if (null === $sourceResource) {
$message .= sprintf('(which is loaded in resource "%s")', $this->varToString($resource));
} else {
$message .= sprintf(
'(which is being imported from "%s")',
$this->varToString($sourceResource)
);
$message .= sprintf('(which is being imported from "%s")',$this->varToString($sourceResource));
}
$message .= '.';