| 1 | <?php  | 
            ||
| 9 | class AuthServiceProvider extends ServiceProvider  | 
            ||
| 10 | { | 
            ||
| 11 | /**  | 
            ||
| 12 | * The policy mappings for the application.  | 
            ||
| 13 | *  | 
            ||
| 14 | * @var array  | 
            ||
| 15 | */  | 
            ||
| 16 | protected $policies = [  | 
            ||
| 17 | Testimony::class => TestimonyPolicy::class,  | 
            ||
| 18 | ];  | 
            ||
| 19 | |||
| 20 | /**  | 
            ||
| 21 | * Register services.  | 
            ||
| 22 | *  | 
            ||
| 23 | * @return void  | 
            ||
| 24 | */  | 
            ||
| 25 | public function register()  | 
            ||
| 29 | |||
| 30 | /**  | 
            ||
| 31 | * Bootstrap services.  | 
            ||
| 32 | *  | 
            ||
| 33 | * @return void  | 
            ||
| 34 | */  | 
            ||
| 35 | public function boot()  | 
            ||
| 39 | }  | 
            ||
| 40 |