@@ -6,8 +6,8 @@ |
||
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 | } |
@@ -6,19 +6,19 @@ |
||
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 | } |