This repository has been archived on 2021-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
questcequonmange/app/Providers/AuthServiceProvider.php
2019-05-13 00:35:06 +02:00

31 lines
575 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\Facades\Gate;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
class AuthServiceProvider extends ServiceProvider
{
/**
* The policy mappings for the application.
*
* @var array
*/
protected $policies = [
'App\Model' => 'App\Policies\ModelPolicy',
];
/**
* Register any authentication / authorization services.
*
* @return void
*/
public function boot()
{
$this->registerPolicies();
//
}
}