Passed
Branch main (98facb)
by Andrey
03:46
created
src/Models/UserInfo.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/TikTokServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.