Skip to content

Commit 1bed3e0

Browse files
committed
fix keys
1 parent 3d3579d commit 1bed3e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/WalletServiceProvider.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,10 @@ private function services(array $configure, array $cache): void
206206
$this->app->singleton(BookkeeperServiceInterface::class, fn () => $this->app->make(
207207
$configure['bookkeeper'] ?? BookkeeperService::class,
208208
[
209-
$this->app->make(
209+
'storageService' => $this->app->make(
210210
StorageServiceInterface::class,
211211
[
212-
$this->app->make(CacheManager::class)
212+
'cacheRepository' => $this->app->make(CacheManager::class)
213213
->driver($cache['driver'] ?? 'array'),
214214
],
215215
),
@@ -219,10 +219,10 @@ private function services(array $configure, array $cache): void
219219
$this->app->singleton(RegulatorServiceInterface::class, fn () => $this->app->make(
220220
$configure['regulator'] ?? RegulatorService::class,
221221
[
222-
$this->app->make(
222+
'storageService' => $this->app->make(
223223
StorageServiceInterface::class,
224224
[
225-
$this->app->make(CacheManager::class)
225+
'cacheRepository' => $this->app->make(CacheManager::class)
226226
->driver('array'),
227227
],
228228
),

0 commit comments

Comments
 (0)