Passed
Push — master ( 1922be...873b6b )
by pooya
07:57 queued 05:13
created
src/BinanceAPIFacade.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
 
7 7
 class BinanceAPIFacade extends Facade {
8 8
 
9
-	protected static function getFacadeAccessor() {
10
-		return 'binance';
11
-	}
9
+    protected static function getFacadeAccessor() {
10
+        return 'binance';
11
+    }
12 12
 
13 13
 }
Please login to merge, or discard this patch.
src/BinanceServiceProvider.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -6,19 +6,19 @@
 block discarded – undo
6 6
 
7 7
 class BinanceServiceProvider extends ServiceProvider {
8 8
 
9
-	public function boot()
10
-	{
11
-		$this->publishes([
12
-			__DIR__.'/../config/binance.php' => config_path('binance.php')
13
-		]);
14
-	}
9
+    public function boot()
10
+    {
11
+        $this->publishes([
12
+            __DIR__.'/../config/binance.php' => config_path('binance.php')
13
+        ]);
14
+    }
15 15
 
16
-	public function register()
17
-	{
18
-		$this->mergeConfigFrom(__DIR__.'/../config/binance.php', 'binance');
19
-		$this->app->bind('binance', function() {
20
-			return new BinanceAPI(config('binance'));
21
-		});
22
-	}
16
+    public function register()
17
+    {
18
+        $this->mergeConfigFrom(__DIR__.'/../config/binance.php', 'binance');
19
+        $this->app->bind('binance', function() {
20
+            return new BinanceAPI(config('binance'));
21
+        });
22
+    }
23 23
 
24 24
 }
Please login to merge, or discard this patch.