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 3252bb6 commit 21ace74Copy full SHA for 21ace74
Model/AbstractManagement.php
@@ -32,7 +32,7 @@ public function create($data)
32
$data = json_decode($data, true);
33
$item = $this->_itemFactory->create();
34
$item->setData($data)->save();
35
- } catch (Exception $e) {
+ } catch (\Exception $e) {
36
return false;
37
}
38
@@ -57,7 +57,7 @@ public function update($id, $data)
57
58
59
$item->addData($data)->save();
60
61
62
63
@@ -80,7 +80,7 @@ public function delete($id)
80
return true;
81
82
83
84
85
86
0 commit comments