1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Providers;
- use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
- class AuthServiceProvider extends ServiceProvider
- {
-
- protected $policies = [
-
- ];
-
- public function boot(): void
- {
-
- }
- }
|