File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2424use Bavix \Wallet \Internal \Service \DatabaseServiceInterface ;
2525use Bavix \Wallet \Internal \Service \JsonService ;
2626use Bavix \Wallet \Internal \Service \JsonServiceInterface ;
27- use Bavix \Wallet \Internal \Service \LockService as NewLockService ;
27+ use Bavix \Wallet \Internal \Service \LockService ;
2828use Bavix \Wallet \Internal \Service \LockServiceInterface ;
2929use Bavix \Wallet \Internal \Service \MathService ;
3030use 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);
You can’t perform that action at this time.
0 commit comments