Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Platform
Commits
cb33f8c4
Commit
cb33f8c4
authored
7 years ago
by
Mehedi Hassan
Committed by
GitHub
7 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make PHP < 7 happy
parent
fe23bdd9
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
User.php
Modules/User/Entities/Sentinel/User.php
+3
-2
No files found.
Modules/User/Entities/Sentinel/User.php
View file @
cb33f8c4
...
...
@@ -113,8 +113,9 @@ class User extends EloquentUser implements UserInterface, AuthenticatableContrac
#i: Relation method resolver
if
(
config
()
->
has
(
$config
))
{
$function
=
config
()
->
get
(
$config
);
return
(
$function
->
bindTo
(
$this
))();
$bound
=
$function
->
bindTo
(
$this
);
return
$bound
();
}
#i: No relation found, return the call to parent (Eloquent) to handle it.
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment