Skip to content

Commit 2fee2bd

Browse files
Fix forgotten namespace
1 parent 2068289 commit 2fee2bd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/IbmCloudObjectStorageProvider.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App\Providers;
3+
namespace Tavux\IBMCloudObjectStorage\Laravel;
44

55
use Illuminate\Support\Facades\Storage;
66
use Illuminate\Support\ServiceProvider;
@@ -29,6 +29,10 @@ public function register()
2929
*/
3030
public function boot()
3131
{
32+
$this->publishes([
33+
__DIR__ . '/../config/qonto.php' => config_path('qonto.php'),
34+
], ['config', 'qonto']);
35+
3236
Storage::extend('ibm-cos', function($app, $config) {
3337
return new Filesystem(new IbmCosAdapter($config, $config['bucket']));
3438
});

0 commit comments

Comments
 (0)