Skip to content

Commit a3693e7

Browse files
committed
Update LarapushServiceProvider.php
1 parent c589bd8 commit a3693e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LarapushServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ public function boot()
3535

3636
private function registerStorage()
3737
{
38-
$this->app['config']->set('filesystems.disks', [
38+
$this->app['config']->set('filesystems.disks', array_merge([
3939
'larapush' => [
4040
'driver' => 'local',
4141
'root' => app('config')->get('larapush.storage.path'),
4242
],
43-
]);
43+
], $this->app['config']->get('filesystems.disks')));
4444
}
4545

4646
protected function publishConfiguration()

0 commit comments

Comments
 (0)