Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
Yeray Santana Hualde
syncEnrollments
Commits
b89502ed
Commit
b89502ed
authored
Oct 30, 2015
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Just use base user by default.
parent
13b79919
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
15 deletions
+8
-15
User.php
app/User.php
+8
-15
No files found.
app/User.php
View file @
b89502ed
...
@@ -2,32 +2,25 @@
...
@@ -2,32 +2,25 @@
namespace
App
;
namespace
App
;
use
Illuminate\Auth\Authenticatable
;
use
Illuminate\Foundation\Auth\User
as
BaseUser
;
use
Illuminate\Database\Eloquent\Model
;
use
Illuminate\Auth\Passwords\CanResetPassword
;
use
Illuminate\Foundation\Auth\Access\Authorizable
;
use
Illuminate\Contracts\Auth\Authenticatable
as
AuthenticatableContract
;
use
Illuminate\Contracts\Auth\Access\Authorizable
as
AuthorizableContract
;
use
Illuminate\Contracts\Auth\CanResetPassword
as
CanResetPasswordContract
;
class
User
extends
Model
implements
class
User
extends
BaseUser
AuthenticatableContract
,
AuthorizableContract
,
CanResetPasswordContract
{
{
use
Authenticatable
,
Authorizable
,
CanResetPassword
;
/**
/**
* The attributes that are mass assignable.
* The attributes that are mass assignable.
*
*
* @var array
* @var array
*/
*/
protected
$fillable
=
[
'name'
,
'email'
,
'password'
];
protected
$fillable
=
[
'name'
,
'email'
,
'password'
];
/**
/**
* The attributes excluded from the model's JSON form.
* The attributes excluded from the model's JSON form.
*
*
* @var array
* @var array
*/
*/
protected
$hidden
=
[
'password'
,
'remember_token'
];
protected
$hidden
=
[
'password'
,
'remember_token'
];
}
}
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