Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cumanacr authored Jun 18, 2021
1 parent 58a89ed commit 497f388
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions graphql/Schema/crmHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,13 @@ public function saveBean($module_name, $class_name, $name_value_list)
$seed->$relatedModule->add($value['id']);
}
}
}
$seed->save($seed->notifyonsave);
return array('id' => $seed->id);
} else {
error_log(__METHOD__ . " ERROR SAVING");
return "ERROR SAVING";
}
$seed->save($seed->notifyonsave);
return array('id' => $seed->id);
} else {
error_log(__METHOD__ . " ERROR SAVING");
return "ERROR SAVING";
}
}

Expand Down

0 comments on commit 497f388

Please sign in to comment.