pingcrm/app/Providers/AuthServiceProvider.php

30 lines
576 B
PHP
Raw Normal View History

2019-03-05 18:10:11 -03:00
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
class AuthServiceProvider extends ServiceProvider
{
/**
* The policy mappings for the application.
*
2021-12-08 13:59:08 -03:00
* @var array<class-string, class-string>
2019-03-05 18:10:11 -03:00
*/
protected $policies = [
// 'App\Models\Model' => 'App\Policies\ModelPolicy',
2019-03-05 18:10:11 -03:00
];
/**
* Register any authentication / authorization services.
*
* @return void
*/
public function boot()
{
$this->registerPolicies();
//
}
}