cs-fixer fixes

This commit is contained in:
Javier Garcia 2018-05-25 09:29:58 +02:00
parent a89e4c93a7
commit 65a594d271

View File

@ -655,7 +655,7 @@ class Html
break;
}
}
$origin_src= $src;
$originSrc = $src;
if (strpos($src, 'data:image') !== false) {
$tmpDir = Settings::getTempDir() . '/';
@ -695,7 +695,7 @@ class Html
if (is_file($src)) {
$newElement = $element->addImage($src, $style);
} else {
throw new \Exception("Could not load image $origin_src");
throw new \Exception("Could not load image $originSrc");
}
return $newElement;