Completed
Pull Request — master (#2)
by Jimmy
04:23
created
src/Concerns/HasClickUp.php 1 patch
Indentation   +7 added lines, -7 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;
@@ -110,6 +110,6 @@  discard block
 block discarded – undo
110 110
         $this->attributes['clickup_token'] = is_null($clickup_token)
111 111
             ? null
112 112
             : $this->resolveEncrypter()
113
-                   ->encrypt($clickup_token);
113
+                    ->encrypt($clickup_token);
114 114
     }
115 115
 }
Please login to merge, or discard this patch.