File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ public function performUpdate(Model $model)
86
86
// Get the correct foreign key value.
87
87
$ foreignKey = $ this ->getForeignKeyValue ($ model );
88
88
89
- $ values = $ this -> getUpdateValues ($ model ->getDirty (), $ this ->localKey . '.$. ' );
89
+ $ values = self :: getUpdateValues ($ model ->getDirty (), $ this ->localKey . '.$. ' );
90
90
91
91
// Update document in database.
92
92
$ result = $ this ->toBase ()->where ($ this ->localKey . '. ' . $ model ->getKeyName (), $ foreignKey )
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public function performUpdate(Model $model)
77
77
return $ this ->parent ->save ();
78
78
}
79
79
80
- $ values = $ this -> getUpdateValues ($ model ->getDirty (), $ this ->localKey . '. ' );
80
+ $ values = self :: getUpdateValues ($ model ->getDirty (), $ this ->localKey . '. ' );
81
81
82
82
$ result = $ this ->toBase ()->update ($ values );
83
83
You can’t perform that action at this time.
0 commit comments