Completed
Push — master ( 51d78e...858508 )
by Songda
36s
created
src/PayServiceProvider.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -48,13 +48,13 @@
 block discarded – undo
48 48
             return Pay::unipay();
49 49
         });
50 50
 
51
-		$this->app->singleton('pay.douyin', function () {
52
-			return Pay::douyin();
53
-		});
51
+        $this->app->singleton('pay.douyin', function () {
52
+            return Pay::douyin();
53
+        });
54 54
 
55
-		$this->app->singleton('pay.jsb', function () {
56
-			return Pay::jsb();
57
-		});
55
+        $this->app->singleton('pay.jsb', function () {
56
+            return Pay::jsb();
57
+        });
58 58
     }
59 59
 
60 60
     public function provides(): array
Please login to merge, or discard this patch.
src/Facades/Pay.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -28,18 +28,18 @@
 block discarded – undo
28 28
         return app('pay.wechat');
29 29
     }
30 30
 
31
-	public static function douyin(): Douyin
32
-	{
33
-		return app('pay.douyin');
34
-	}
31
+    public static function douyin(): Douyin
32
+    {
33
+        return app('pay.douyin');
34
+    }
35 35
 
36
-	public static function jsb(): Jsb
37
-	{
38
-		return app('pay.jsb');
39
-	}
36
+    public static function jsb(): Jsb
37
+    {
38
+        return app('pay.jsb');
39
+    }
40 40
 
41 41
     public static function unipay(): Unipay
42
-	{
43
-		return app('pay.unipay');
44
-	}
42
+    {
43
+        return app('pay.unipay');
44
+    }
45 45
 }
Please login to merge, or discard this patch.