Passed
Push — develop ( 9e5508...855c67 )
by Jimmy
03:28 queued 11s
created
src/Api/Client.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      */
88 88
     public function oauthRequestTokenUsingCode($code): string
89 89
     {
90
-        $path = 'oauth/token?' . http_build_query(
90
+        $path = 'oauth/token?'.http_build_query(
91 91
             [
92 92
                 'client_id'     => $this->configs['oauth']['id'],
93 93
                 'client_secret' => $this->configs['oauth']['secret'],
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     public function oauthUri($url): string
129 129
     {
130 130
         return $this->uri(
131
-            '?' . http_build_query(
131
+            '?'.http_build_query(
132 132
                 [
133 133
                     'client_id'    => $this->configs['oauth']['id'],
134 134
                     'redirect_uri' => $url,
@@ -251,6 +251,6 @@  discard block
 block discarded – undo
251 251
      */
252 252
     public function uri($path = null, $url = null): string
253 253
     {
254
-        return rtrim(($url ?: $this->configs['url']), '/') . (Str::startsWith($path, '?') ? null : '/') . ltrim($path, '/');
254
+        return rtrim(($url ?: $this->configs['url']), '/').(Str::startsWith($path, '?') ? null : '/').ltrim($path, '/');
255 255
     }
256 256
 }
Please login to merge, or discard this patch.
src/Concerns/HasClickUp.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -36,12 +36,12 @@  discard block
 block discarded – undo
36 36
     {
37 37
         if (is_null($this->builder)) {
38 38
             $this->builder = Container::getInstance()
39
-                                      ->make(Builder::class)
40
-                                      ->setClient(
41
-                                          Container::getInstance()
42
-                                                   ->make(ClickUp::class)
43
-                                                   ->setToken($this->clickup_token)
44
-                                      );
39
+                                        ->make(Builder::class)
40
+                                        ->setClient(
41
+                                            Container::getInstance()
42
+                                                    ->make(ClickUp::class)
43
+                                                    ->setToken($this->clickup_token)
44
+                                        );
45 45
         }
46 46
 
47 47
         return $this->builder;
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         return is_null($this->attributes['clickup_token'] ?? null)
71 71
             ? null
72 72
             : $this->resolveEncrypter()
73
-                   ->decrypt($this->attributes['clickup_token']);
73
+                    ->decrypt($this->attributes['clickup_token']);
74 74
     }
75 75
 
76 76
     /**
@@ -111,6 +111,6 @@  discard block
 block discarded – undo
111 111
         $this->attributes['clickup_token'] = is_null($clickup_token)
112 112
             ? null
113 113
             : $this->resolveEncrypter()
114
-                   ->encrypt($clickup_token);
114
+                    ->encrypt($clickup_token);
115 115
     }
116 116
 }
Please login to merge, or discard this patch.