@@ -12,26 +12,26 @@ |
||
12 | 12 | |
13 | 13 | class User extends Model implements AuthenticatableContract, AuthorizableContract, CanResetPasswordContract |
14 | 14 | { |
15 | - use Authenticatable, Authorizable, CanResetPassword; |
|
15 | + use Authenticatable, Authorizable, CanResetPassword; |
|
16 | 16 | |
17 | - /** |
|
18 | - * The database table used by the model. |
|
19 | - * |
|
20 | - * @var string |
|
21 | - */ |
|
22 | - protected $table = 'users'; |
|
17 | + /** |
|
18 | + * The database table used by the model. |
|
19 | + * |
|
20 | + * @var string |
|
21 | + */ |
|
22 | + protected $table = 'users'; |
|
23 | 23 | |
24 | - /** |
|
25 | - * The attributes that are mass assignable. |
|
26 | - * |
|
27 | - * @var array |
|
28 | - */ |
|
29 | - protected $fillable = ['email', 'password']; |
|
24 | + /** |
|
25 | + * The attributes that are mass assignable. |
|
26 | + * |
|
27 | + * @var array |
|
28 | + */ |
|
29 | + protected $fillable = ['email', 'password']; |
|
30 | 30 | |
31 | - /** |
|
32 | - * The attributes excluded from the model's JSON form. |
|
33 | - * |
|
34 | - * @var array |
|
35 | - */ |
|
36 | - protected $hidden = ['password', 'remember_token']; |
|
31 | + /** |
|
32 | + * The attributes excluded from the model's JSON form. |
|
33 | + * |
|
34 | + * @var array |
|
35 | + */ |
|
36 | + protected $hidden = ['password', 'remember_token']; |
|
37 | 37 | } |