1
0
Fork 0
mirror of https://github.com/prurigro/hypothetical.git synced 2025-04-12 16:50:18 -04:00

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',
];
}