Test Failed
Push — master ( 72daf6...986bed )
by Бабичев
03:30
created
src/Commands/RefreshBalance.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function handle(): void
31 31
     {
32
-        DB::transaction(function () {
32
+        DB::transaction(function() {
33 33
             $wallet = config('wallet.wallet.table');
34 34
             $trans = config('wallet.transaction.table');
35 35
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
                 ->where('confirmed', true)
39 39
                 ->groupBy('wallet_id');
40 40
 
41
-            $joinClause = function (JoinClause $join) use ($wallet) {
41
+            $joinClause = function(JoinClause $join) use ($wallet) {
42 42
                 $join->on("$wallet.id", '=', 'b.wallet_id');
43 43
             };
44 44
 
Please login to merge, or discard this patch.