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.
redBeanIncrementId
1 parent 0d8f586 commit c6cc71fCopy full SHA for c6cc71f
src/Dal/UserDal.php
@@ -21,14 +21,14 @@ public static function create(UserEntity $userEntity): int|string|false
21
$userBean->created_date = $userEntity->getCreationDate();
22
23
try {
24
- $id = R::store($userBean);
+ $redBeanIncrementId = R::store($userBean);
25
} catch (SQL $e) {
26
return false;
27
} finally {
28
R::close();
29
}
30
31
- return $id;
+ return $redBeanIncrementId;
32
33
34
public static function update(string $userUuid, UserEntity $userEntity): int|string|false
0 commit comments