LogViewer/code/app/Providers/AuthServiceProvider.php
splin94@yandex.ru 3a4a328d80 -
2023-11-09 20:51:08 +00:00

30 lines
498 B
PHP
Executable File

<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
class AuthServiceProvider extends ServiceProvider
{
/**
* The policy mappings for the application.
*
* @var array
*/
protected $policies = [
//
];
/**
* Register any authentication / authorization services.
*
* @return void
*/
public function boot()
{
$this->registerPolicies();
//
}
}