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中使用.

相关文章

[laravel] laravel的数据库配置 找到程序目录结构下.env文件 配置基本的数据库连接信息 DB_HOST=127.0....
[Laravel] Laravel的基本HTTP路由 使用Laravel的基本路由,实现get请求响应,找到文件app/Http/routes....
如果说laravel框架的核心是什么,那么无疑是服务容器。理解服务容器的概念,对于我们使用laravel太重要...
网上有很多解析laravel中间件的实现原理,但是不知道有没有读者在读的时候不明白,作者是怎么想到要用a...
laraveli添加一个或多个用户表,以admin为例。 部分文件内容可能需要根据实际情况修改 创建一个Admin模...
TL;DR: 本文介绍 Laravel 的 FastExcel 组件,文中会对 PHP generators 速览,并给出如何在节约内存的同...