Skip to content

Commit 00c57b4

Browse files
committed
update provider
1 parent 94a6aa8 commit 00c57b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WalletServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
use Bavix\Wallet\Internal\Service\DatabaseServiceInterface;
2525
use Bavix\Wallet\Internal\Service\JsonService;
2626
use Bavix\Wallet\Internal\Service\JsonServiceInterface;
27-
use Bavix\Wallet\Internal\Service\LockService as NewLockService;
27+
use Bavix\Wallet\Internal\Service\LockService;
2828
use Bavix\Wallet\Internal\Service\LockServiceInterface;
2929
use Bavix\Wallet\Internal\Service\MathService;
3030
use Bavix\Wallet\Internal\Service\MathServiceInterface;
@@ -154,7 +154,7 @@ private function internal(array $configure): void
154154
{
155155
$this->app->singleton(DatabaseServiceInterface::class, $configure['database'] ?? DatabaseService::class);
156156
$this->app->singleton(JsonServiceInterface::class, $configure['json'] ?? JsonService::class);
157-
$this->app->singleton(LockServiceInterface::class, $configure['lock'] ?? NewLockService::class);
157+
$this->app->singleton(LockServiceInterface::class, $configure['lock'] ?? LockService::class);
158158
$this->app->singleton(MathServiceInterface::class, $configure['math'] ?? MathService::class);
159159
$this->app->singleton(StorageServiceInterface::class, $configure['storage'] ?? StorageService::class);
160160
$this->app->singleton(TranslatorServiceInterface::class, $configure['translator'] ?? TranslatorService::class);

0 commit comments

Comments
 (0)