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 1a80cec commit 7d780a2Copy full SHA for 7d780a2
2 files changed
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## v0.3.1.19
4
5
- Fixed some minor error screen layout issues
6
+- Make User::fresh() compatible with Eloquent\Model v5.2.40+
7
8
## v0.3.1.18
9
userfrosting/models/database/User.php
@@ -89,7 +89,7 @@ public static function isLoggedIn(){
89
*
90
* @see http://stackoverflow.com/a/27748794/2970321
91
*/
92
- public function fresh(array $options = []){
+ public function fresh($options = []){
93
// TODO: Update table and column info, in case it has changed?
94
$user = parent::fresh($options);
95
$user->getGroupIds();
0 commit comments