We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96c27e commit 53080dcCopy full SHA for 53080dc
app/code/Magento/Cms/Model/Wysiwyg/Images/Storage.php
@@ -725,7 +725,9 @@ public function resizeFile($source, $keepRatio = true)
725
try {
726
$image->resize($imageWidth, $imageHeight);
727
} catch (\Throwable $e) {
728
- $this->logger->critical('FAILED WYSIWYG IMAGE RESIZING: ' . ' error: ' . $e->getMessage() . '. path: ' . $realPath);
+ $this->logger->critical(
729
+ 'FAILED WYSIWYG IMAGE RESIZING: ' . ' error: ' . $e->getMessage() . '. path: ' . $realPath
730
+ );
731
return false;
732
}
733
$dest = $targetDir . '/' . $this->ioFile->getPathInfo($source)['basename'];
0 commit comments