2015-08-29 20:27:18 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
|
2022-07-15 14:38:49 +01:00
|
|
|
// use Illuminate\Support\Facades\Gate;
|
2015-08-29 20:27:18 -05:00
|
|
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
|
|
|
|
|
|
|
|
|
class AuthServiceProvider extends ServiceProvider
|
|
|
|
|
{
|
|
|
|
|
/**
|
2022-05-05 14:52:23 -05:00
|
|
|
* The model to policy mappings for the application.
|
2015-08-29 20:27:18 -05:00
|
|
|
*
|
2021-12-03 15:04:57 +00:00
|
|
|
* @var array<class-string, class-string>
|
2015-08-29 20:27:18 -05:00
|
|
|
*/
|
|
|
|
|
protected $policies = [
|
2023-04-15 16:53:39 -05:00
|
|
|
//
|
2015-08-29 20:27:18 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/**
|
2016-07-18 10:41:51 -05:00
|
|
|
* Register any authentication / authorization services.
|
2015-08-29 20:27:18 -05:00
|
|
|
*/
|
2023-01-03 09:35:24 +00:00
|
|
|
public function boot(): void
|
2015-08-29 20:27:18 -05:00
|
|
|
{
|
2015-08-30 07:31:25 -04:00
|
|
|
//
|
2015-08-29 20:27:18 -05:00
|
|
|
}
|
|
|
|
|
}
|