1 | <?php |
||
2 | |||
3 | namespace shweshi\LaravelUnsplashWrapper\Providers; |
||
4 | |||
5 | use Illuminate\Support\ServiceProvider; |
||
6 | |||
7 | class UnsplashServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap the application services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
15 | { |
||
16 | $this->publishes([ |
||
17 | __DIR__.'/../config/unsplash.php' => config_path('unsplash.php'), |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
18 | ]); |
||
19 | } |
||
20 | } |
||
21 |