2016-05-19 15:01:28 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2023-06-09 18:31:53 +01:00
|
|
|
// use Illuminate\Support\Facades\Gate;
|
2016-05-19 15:01:28 +01:00
|
|
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
|
|
|
|
|
|
|
class AuthServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
2023-02-18 09:34:57 +00:00
|
|
|
* The model to policy mappings for the application.
|
2016-05-19 15:01:28 +01:00
|
|
|
*
|
2023-02-18 09:34:57 +00:00
|
|
|
* @var array<class-string, class-string>
|
2016-05-19 15:01:28 +01:00
|
|
|
*/
|
|
|
|
protected $policies = [
|
2023-06-09 18:31:53 +01:00
|
|
|
//
|
2016-05-19 15:01:28 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
2023-02-18 09:34:57 +00:00
|
|
|
* Register any authentication / authorization services.
|
2016-05-19 15:01:28 +01:00
|
|
|
*/
|
2023-02-17 09:41:14 +00:00
|
|
|
public function boot(): void
|
2016-05-19 15:01:28 +01:00
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|