Clean up formatting on the User model

This commit is contained in:
Kevin MacMartin 2016-08-16 22:00:39 -04:00
parent bac290877e
commit 4d4a717afe

View file

@ -1,11 +1,9 @@
<?php
namespace App;
<?php namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
class User extends Authenticatable {
/**
* The attributes that are mass assignable.
*
@ -23,4 +21,5 @@ class User extends Authenticatable
protected $hidden = [
'password', 'remember_token',
];
}