Skip to content

Commit 6e92536

Browse files
Merge pull request #202 from pradeepkanaka/fix-di-compile-issue
Fix di compile issue
2 parents f50e76b + 3b345f7 commit 6e92536

File tree

1 file changed

+1
-1
lines changed
  • app/code/Meta/BusinessExtension/Block/Adminhtml

1 file changed

+1
-1
lines changed

app/code/Meta/BusinessExtension/Block/Adminhtml/Setup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public function getSelectedStoreId(): ?int
145145
try {
146146
$this->storeRepo->getById($requestStoreId);
147147
return $requestStoreId;
148-
} catch (NoSuchEntityException) {
148+
} catch (NoSuchEntityException $ex) {
149149
$this->fbeHelper->log("Store with requestStoreId $requestStoreId not found");
150150
}
151151
}

0 commit comments

Comments
 (0)