1 | <?php |
||
7 | class AuthServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * The policy mappings for the application. |
||
11 | * |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $policies = [ |
||
15 | 'Xetaravel\Model' => 'Xetaravel\Policies\ModelPolicy', |
||
16 | ]; |
||
17 | |||
18 | /** |
||
19 | * Register any authentication / authorization services. |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | public function boot() |
||
29 | } |
||
30 |