0

嗨,我使用 Cartalyst/Sentinel 登录系统一切正常,但是这个 Reminder::exists($user) 函数给出了这个错误Argument 1 passed to Cartalyst\Sentinel\Reminders\IlluminateReminderRepository::exists() must implement interface cartalyst\Sentinel\Users\UserInterface

代码与他们的示例页面上给出的代码相同。 https://cartalyst.com/manual/sentinel/2.0#reminder-exists-user

$user = Sentinel::findById($credentials);

//dd($user); // this dump user return collection object of user

 $reminder = Reminder::exists( $user );
4

1 回答 1

0

错误是Sentinel::findById($id)期望 id 不是数组,这里 $credentials 是数组。现在$reminder = Reminder::exists( $user );正在工作。

于 2016-07-05T11:20:02.740 回答