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 2defbdb commit b8ba385Copy full SHA for b8ba385
app/code/Magento/Backup/Model/Backup.php
@@ -286,7 +286,9 @@ public function open($write = false)
286
$this->varDirectory->delete($this->_getFilePath());
287
}
288
if (!$write && !$this->varDirectory->isFile($this->_getFilePath())) {
289
- throw new \Magento\Framework\Exception\InputException(__('The backup file "%1" does not exist.', $this->getFileName()));
+ throw new \Magento\Framework\Exception\InputException(
290
+ __('The backup file "%1" does not exist.', $this->getFileName())
291
+ );
292
293
294
$mode = $write ? 'wb' . self::COMPRESS_RATE : 'rb';
0 commit comments