1 | <?php |
||
9 | class AppBuildAuthServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | protected $policies = [ |
||
12 | Build::class => BuildPolicy::class, |
||
13 | ]; |
||
14 | |||
15 | /** |
||
16 | * Register services. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | public function register() |
||
24 | |||
25 | /** |
||
26 | * Bootstrap services. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | public function boot() |
||
34 | } |
||
35 |