1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00
flox/backend/app/User.php
Viktor Geringer dbd6e99eee Fetch timestamp (#23)
* remove migration comments

* update timestamp by fetch parser

* remote empty line
2017-02-13 21:17:25 +01:00

19 lines
275 B
PHP

<?php
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable {
protected $fillable = [
'username',
'password',
];
protected $hidden = [
'password',
'remember_token',
];
}