Files
nl-mall-api/app/models/User.php

52 lines
843 B
PHP
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?php
use Illuminate\Auth\UserInterface;
2013-02-01 08:30:52 -06:00
use Illuminate\Auth\Reminders\RemindableInterface;
2013-01-11 15:14:07 -06:00
class User extends Eloquent implements UserInterface, RemindableInterface {
2013-01-11 15:14:07 -06:00
/**
* 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 = array('password');
/**
* Get the unique identifier for the user.
*
* @return mixed
*/
public function getAuthIdentifier()
{
return $this->getKey();
}
/**
* Get the password for the user.
*
* @return string
*/
public function getAuthPassword()
{
return $this->password;
}
/**
* Get the e-mail address where password reminders are sent.
*
* @return string
*/
public function getReminderEmail()
{
return $this->email;
}
2013-01-11 15:14:07 -06:00
}