@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | //add settings |
32 | 32 | $this->UserSettings(); |
33 | 33 | |
34 | - $userName = '@' . str_replace('@', '', $userName); |
|
34 | + $userName = '@'.str_replace('@', '', $userName); |
|
35 | 35 | |
36 | 36 | if (!$userName) { |
37 | 37 | return [ |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | ]; |
42 | 42 | } |
43 | 43 | |
44 | - $response = $this->getResponse($this->url . $userName); |
|
44 | + $response = $this->getResponse($this->url.$userName); |
|
45 | 45 | |
46 | 46 | return $response; |
47 | 47 | } |
@@ -33,7 +33,7 @@ |
||
33 | 33 | { |
34 | 34 | $this->mergeConfigFrom(__DIR__.'/../config/tiktok.php', 'tiktok'); |
35 | 35 | |
36 | - $this->app->singleton('tiktok', function () { |
|
36 | + $this->app->singleton('tiktok', function() { |
|
37 | 37 | return $this->app->make(TikTok::class); |
38 | 38 | }); |
39 | 39 |