jonnybarnes.uk/app/Providers/AuthServiceProvider.php

27 lines
518 B
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
<?php
namespace App\Providers;
// 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 = [
//
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
{
//
}
}