Renaming folders.

This commit is contained in:
Taylor Otwell
2014-08-18 23:42:49 -05:00
parent 79bcb450dd
commit 3ffbb5d6ba
18 changed files with 0 additions and 0 deletions

27
app/CoreBkp/User.php Normal file
View File

@@ -0,0 +1,27 @@
<?php namespace App;
use Eloquent;
use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableTrait;
use Illuminate\Auth\Reminders\RemindableInterface;
class User extends Eloquent implements UserInterface, RemindableInterface {
use UserTrait, RemindableTrait;
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'users';
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = ['password', 'remember_token'];
}