We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c589bd8 commit a3693e7Copy full SHA for a3693e7
src/LarapushServiceProvider.php
@@ -35,12 +35,12 @@ public function boot()
35
36
private function registerStorage()
37
{
38
- $this->app['config']->set('filesystems.disks', [
+ $this->app['config']->set('filesystems.disks', array_merge([
39
'larapush' => [
40
'driver' => 'local',
41
'root' => app('config')->get('larapush.storage.path'),
42
],
43
- ]);
+ ], $this->app['config']->get('filesystems.disks')));
44
}
45
46
protected function publishConfiguration()
0 commit comments