我刚才有一个关于添加三个“RememberToken”公共函数(getRememberToken(),setRememberToken()和getRememberTokenName())的问题。出于某种原因,如果我尝试登录并创建一个新会话,我的页面将崩溃,我会得到“类Foo包含3个抽象方法......”,直到我将所有三个添加到我拥有的每个模型。奇怪的是我尝试使用Sessions类登录但是我会得到这个错误,直到我将新的RememberToken函数添加到我拥有的每个类中。这是正常的吗?我是否需要将“remember_token”添加到我现在使用的每个表中?如果有人能解释为什么这是或我怎么出错,将不胜感激!非常感谢! 以下是我的一个具有3个RememberToken函数的模型的示例:
<?php
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;
class Warranty extends Eloquent implements UserInterface, RemindableInterface {
protected $fillable = array( 'id', 'created_by', 'street_address', 'warranty_serialized');
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'warranties';
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = array('password');
/**
* Get the unique identifier for the order.
*
* @return mixed
*/
public function getAuthIdentifier()
{
return $this->getKey();
}
/**
* Get the password for the order.
*
* @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;
}
/*4.26 Update to RememberToken*/
public function getRememberToken()
{
return $this->remember_token;
}
public function setRememberToken($value)
{
$this->remember_token = $value;
}
public function getRememberTokenName()
{
return 'remember_token';
}
}
答案 0 :(得分:3)
您必须将其添加到
的所有模型中implements UserInterface, RemindableInterface
因为这些基本上是用户表。