Files
Speedtest-Tracker/app/Providers/AuthServiceProvider.php
Henry Whitaker 0062ac6960 Added base app
Has basic login UI, has methods to run speedtests
2020-04-08 13:57:26 +01:00

31 lines
578 B
PHP

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