2016-08-19 16:38:49 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2022-10-11 18:14:02 -04:00
|
|
|
// use Illuminate\Support\Facades\Gate;
|
2016-08-19 16:38:49 -04:00
|
|
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
|
|
|
|
|
|
|
class AuthServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
2022-05-23 21:01:33 -04:00
|
|
|
* The model to policy mappings for the application.
|
2016-08-19 16:38:49 -04:00
|
|
|
*
|
2022-05-23 21:01:33 -04:00
|
|
|
* @var array<class-string, class-string>
|
2016-08-19 16:38:49 -04:00
|
|
|
*/
|
|
|
|
protected $policies = [
|
2023-05-05 15:31:58 -04:00
|
|
|
//
|
2016-08-19 16:38:49 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register any authentication / authorization services.
|
|
|
|
*/
|
2023-03-13 17:33:19 -04:00
|
|
|
public function boot(): void
|
2016-08-19 16:38:49 -04:00
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|