Laravel意外错误"类用户包含3个抽象方法......"

Tha*_*tis 72 php laravel

在Laravel上编程我的身份验证应用程序时,我遇到了一个我从未见过的错误.我已经为这个问题的原因进行了近一个小时的头脑风暴,但我找不到解决方案.

错误:

类User包含3个抽象方法,因此必须声明为abstract或实现其余方法(Illuminate\Auth\UserInterface :: getRememberToken,Illuminate\Auth\UserInterface :: setRememberToken,Illuminate\Auth\UserInterface :: getRememberTokenName)

User.php型号:

<?php

use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;

class User extends Eloquent implements UserInterface, RemindableInterface {

protected $fillable = [
    "email",
    "username",
    "password",
    "password_temp",
    "code",
    "active",
    "created_at",
    "updated_at",
    "banned"
];

/**
 * 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;
}

}
Run Code Online (Sandbox Code Playgroud)

和RegisterController.php

<?php

class RegisterController extends BaseController {

public function getRegister()
{
    return View::make('template.home.register');
}

public function postRegister()
{
    $rules = [
        "email"         => "required|email|max:50|unique:users",
        "username"      => "required|max:50|min:5|unique:users",
        "password"      => "required|max:50|min:6",
        "password_again"=> "required|same:password",
    ];

    $messages = ["required" => "This field is required." ];

    $validator = Validator::make(Input::all(), $rules, $messages);

    if($validator->fails())
    {
        return Redirect::route('register')->withErrors($validator)->withInput();
    } else {
        $email      = Input::get('email');
        $username   = Input::get('username');
        $password   = Input::get('password');
        $code       = str_random(60);

        $user = User::create([
            'email'         => $email,
            'username'      => $username,
            'password'      => Hash::make($password),
            'code'          => $code,
            'activated'     => 0,
            'banned'        => 0
        ]);

        if ($user)
        {
            Mail::send('template.email.activate', ['link' => URL::route('activate', $code), 'username' => $username], function($message) use ($user)
            {
                $message->to($user->email, $user->username)->subject('Account Registration');
            });

            return Redirect::route('register')->with('homeError', 'There was a problem creating your account.');
        }
    }
    return Redirect::route('register')->with('homeError', 'Account could not be created.');
}
}
Run Code Online (Sandbox Code Playgroud)

Mat*_*vić 173

啊找到了.

它显然是Laravel Update的记录.

您可以查看Laravel文档来解决您的问题:

"首先,在您的users表中添加一个新的,可空的VARCHAR(100),TEXT或等效的remember_token.

接下来,如果您使用的是Eloquent身份验证驱动程序,请使用以下三种方法更新User类:

public function getRememberToken()
{
    return $this->remember_token;
}

public function setRememberToken($value)
{
    $this->remember_token = $value;
}

public function getRememberTokenName()
{
    return 'remember_token';
}
Run Code Online (Sandbox Code Playgroud)

"

有关详细信息,请参见http://laravel.com/docs/upgrade.

  • 修补程序版本发生了重大变化?这太荒谬了,我现在正在锁定作曲家的确切版本.谢谢你找到答案! (3认同)