Closed stevepop closed 9 years ago
On line 383 in the BouncyTrait, we have the line ; if (! $params['id']) {
This causes an error as the variable 'id' does not exist when saving a new model. A simple fix for this would be to change this to; if (! isset($params['id'])) {
Thanks.
Fixed on both branches. Thanks for reporting it.
On line 383 in the BouncyTrait, we have the line ; if (! $params['id']) {
This causes an error as the variable 'id' does not exist when saving a new model. A simple fix for this would be to change this to; if (! isset($params['id'])) {
Thanks.