php – Laravel 5.2自定义身份验证错误

前端之家收集整理的这篇文章主要介绍了php – Laravel 5.2自定义身份验证错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我为我的laravel 5.2进行自定义身份验证时收到错误但是此代码在我的laravel 5.1 My config / auth.PHP文件中正常工作
'providers' => [
    'users' => [
        'driver' => 'custom','model' => App\User::class,],// 'users' => [
    //     'driver' => 'database',//     'table' => 'users',// ],

我的CustomUserProvider.PHP(Auth / CustomUserProvider)文件

<?PHP namespace App\Auth;

use Illuminate\Contracts\Auth\UserProvider;
use Illuminate\Contracts\Hashing\Hasher as HasherContract;
use Illuminate\Contracts\Auth\Authenticatable as UserContract;

class CustomUserProvider implements UserProvider {

    protected $model;

    public function __construct(UserContract $model)
    {
        $this->model = $model;
    }

    public function retrieveById($identifier)
    {

    }

    public function retrieveByToken($identifier,$token)
    {

    }

    public function updateRememberToken(UserContract $user,$token)
    {

    }

    public function retrieveByCredentials(array $credentials)
    {

    }

    public function validateCredentials(UserContract $user,array $credentials)
    {

    }

}

我的CustomAuthProvider.PHP文件

<?PHP namespace App\Providers;

use App\User;
use Auth;
use App\Auth\CustomUserProvider;
use Illuminate\Support\ServiceProvider;

class CustomAuthProvider extends ServiceProvider {

    /**
     * Bootstrap the application services.
     *
     * @return void
     */
    public function boot()
    {
        $this->app['auth']->extend('custom',function()
        {

            return new CustomUserProvider();
        });
    }

    /**
     * Register the application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

}

现在这在laravel 5.1 in 5.2中工作正常我得到的错误就像

InvalidArgumentException in CreatesUserProviders.PHP line 40:
Authentication user provider [custom] is not defined.
唯一的一点是使用
$this->app['auth']->provider(...

代替

$this->app['auth']->extend(...

最后一个在5.1中使用,第一个应该在5.2中使用.

原文链接:https://www.f2er.com/laravel/240112.html

猜你在找的Laravel相关文章