Left file: appwork-v1_2_2/laravel-starter/app/Providers/AuthServiceProvider.php  
Right file: appwork-v1_3_0/laravel-starter/app/Providers/AuthServiceProvider.php  
1 <?php = 1 <?php
2     2  
3 namespace App\Providers;   3 namespace App\Providers;
4     4  
5 use Illuminate\Support\Facades\Gate;   5 use Illuminate\Support\Facades\Gate;
6 use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;   6 use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
7     7  
8 class AuthServiceProvider extends ServiceProvider   8 class AuthServiceProvider extends ServiceProvider
9 {   9 {
10     /**   10     /**
11      * The policy mappings for the application.   11      * The policy mappings for the application.
12      *   12      *
13      * @var array   13      * @var array
14      */   14      */
15     protected $policies = [   15     protected $policies = [
16         'App\Model' => 'App\Policies\ModelPolicy', <> 16         // 'App\Model' => 'App\Policies\ModelPolicy',
17     ]; = 17     ];
18     18  
19     /**   19     /**
20      * Register any authentication / authorization services.   20      * Register any authentication / authorization services.
21      *   21      *
22      * @return void   22      * @return void
23      */   23      */
24     public function boot()   24     public function boot()
25     {   25     {
26         $this->registerPolicies();   26         $this->registerPolicies();
27     27  
28         //   28         //
29     }   29     }
30 }   30 }