Skip to content

Commit 1ac94a2

Browse files
committed
Fixing the size of columns that exceeds 120 characters.
1 parent 8a0a4d5 commit 1ac94a2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanMedia.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ public function execute()
3232
} catch (LocalizedException $e) {
3333
$this->messageManager->addErrorMessage($e->getMessage());
3434
} catch (\Exception $e) {
35-
$this->messageManager->addExceptionMessage($e, __('An error occurred while clearing the JavaScript/CSS cache.'));
35+
$this->messageManager
36+
->addExceptionMessage($e, __('An error occurred while clearing the JavaScript/CSS cache.'));
3637
}
3738

3839
/** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */

app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStorePost.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ public function execute()
4242
} catch (\Magento\Framework\Exception\LocalizedException $e) {
4343
$this->messageManager->addErrorMessage($e->getMessage());
4444
} catch (\Exception $e) {
45-
$this->messageManager->addExceptionMessage($e, __('Unable to delete the store view. Please try again later.'));
45+
$this->messageManager
46+
->addExceptionMessage($e, __('Unable to delete the store view. Please try again later.'));
4647
}
4748
return $redirectResult->setPath('adminhtml/*/editStore', ['store_id' => $itemId]);
4849
}

0 commit comments

Comments
 (0)