More properties

This commit is contained in:
James Brooks 2015-01-02 08:46:08 +00:00
parent 14ee448930
commit 4605afada3

View File

@ -9,6 +9,14 @@ use Illuminate\Auth\UserTrait;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Hash;
/**
* @property string $username
* @property string $password
* @property string $remember_token
* @property string $email
* @property int $active
* @property int $level
*/
class User extends Model implements UserInterface, RemindableInterface
{
use UserTrait, RemindableTrait;