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