Files
im-demo-server/app/Providers/AuthServiceProvider.php

27 lines
518 B
PHP
Raw Normal View History

2015-08-29 20:27:18 -05:00
<?php
namespace App\Providers;
// 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
*
* @var array<class-string, class-string>
2015-08-29 20:27:18 -05:00
*/
protected $policies = [
//
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
*/
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
}
}