GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 5345ef...b3f137 )
by Sergey
01:27
created
src/LPTracker/models/ContactDetail.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -71,15 +71,15 @@  discard block
 block discarded – undo
71 71
     public function validate()
72 72
     {
73 73
         if (empty($this->type)) {
74
-            throw new LPTrackerSDKException('Detail type can not be null: ' . $this->__toString());
74
+            throw new LPTrackerSDKException('Detail type can not be null: '.$this->__toString());
75 75
         }
76 76
 
77
-        if (!in_array($this->type, self::getAllTypes(), true)) {
78
-            throw new LPTrackerSDKException('Detail type not in (' . implode(',', self::getAllTypes()) . '): ' . $this->__toString());
77
+        if ( ! in_array($this->type, self::getAllTypes(), true)) {
78
+            throw new LPTrackerSDKException('Detail type not in ('.implode(',', self::getAllTypes()).'): '.$this->__toString());
79 79
         }
80 80
 
81 81
         if (empty($this->data)) {
82
-            throw new LPTrackerSDKException('Detail data can not be null: ' . $this->__toString());
82
+            throw new LPTrackerSDKException('Detail data can not be null: '.$this->__toString());
83 83
         }
84 84
 
85 85
         return true;
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
             'data' => $this->data,
96 96
         ];
97 97
 
98
-        if (!empty($this->id)) {
98
+        if ( ! empty($this->id)) {
99 99
             $result['id'] = $this->getId();
100 100
         }
101 101
         return $result;
Please login to merge, or discard this patch.
src/LPTracker/models/ContactField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     public function validate()
76 76
     {
77 77
         if (empty($this->id)) {
78
-            throw new LPTrackerSDKException('Field id can not be null: ' . $this->__toString());
78
+            throw new LPTrackerSDKException('Field id can not be null: '.$this->__toString());
79 79
         }
80 80
 
81 81
         return true;
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             'name' => $this->name,
92 92
             'type' => $this->type,
93 93
         ];
94
-        if (!empty($this->value)) {
94
+        if ( ! empty($this->value)) {
95 95
             $result['value'] = $this->getValue();
96 96
         }
97 97
         return $result;
Please login to merge, or discard this patch.
src/LPTracker/models/Comment.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,20 +28,20 @@  discard block
 block discarded – undo
28 28
 
29 29
     public function __construct(array $commentData = [])
30 30
     {
31
-        if (!empty($commentData['id'])) {
31
+        if ( ! empty($commentData['id'])) {
32 32
             $this->id = (int) $commentData['id'];
33 33
         }
34
-        if (!empty($commentData['text'])) {
34
+        if ( ! empty($commentData['text'])) {
35 35
             $this->text = $commentData['text'];
36 36
         }
37
-        if (!empty($commentData['author'])) {
37
+        if ( ! empty($commentData['author'])) {
38 38
             if ($commentData['author']['type'] === 'main') {
39 39
                 $this->ownerId = 0;
40 40
             } else {
41 41
                 $this->ownerId = (int) $commentData['author']['id'];
42 42
             }
43 43
         }
44
-        if (!empty($commentData['created_at'])) {
44
+        if ( ! empty($commentData['created_at'])) {
45 45
             $this->setCreatedAt($commentData['created_at']);
46 46
         }
47 47
     }
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      */
121 121
     public function setCreatedAt($createdAt)
122 122
     {
123
-        if (!$createdAt instanceof \DateTime) {
123
+        if ( ! $createdAt instanceof \DateTime) {
124 124
             $createdAt = \DateTime::createFromFormat('d.m.Y H:i:s', $createdAt);
125 125
         }
126 126
         $this->createdAt = $createdAt;
Please login to merge, or discard this patch.
src/LPTracker/models/Payment.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -23,13 +23,13 @@  discard block
 block discarded – undo
23 23
 
24 24
     public function __construct(array $paymentData = [])
25 25
     {
26
-        if (!empty($paymentData['category'])) {
26
+        if ( ! empty($paymentData['category'])) {
27 27
             $this->category = $paymentData['category'];
28 28
         }
29
-        if (!empty($paymentData['purpose'])) {
29
+        if ( ! empty($paymentData['purpose'])) {
30 30
             $this->purpose = $paymentData['purpose'];
31 31
         }
32
-        if (!empty($paymentData['sum'])) {
32
+        if ( ! empty($paymentData['sum'])) {
33 33
             $this->sum = $paymentData['sum'];
34 34
         }
35 35
     }
@@ -40,13 +40,13 @@  discard block
 block discarded – undo
40 40
     public function toArray()
41 41
     {
42 42
         $result = [];
43
-        if (!empty($this->category)) {
43
+        if ( ! empty($this->category)) {
44 44
             $result['category'] = $this->getCategory();
45 45
         }
46
-        if (!empty($this->purpose)) {
46
+        if ( ! empty($this->purpose)) {
47 47
             $result['purpose'] = $this->getPurpose();
48 48
         }
49
-        if (!empty($this->sum)) {
49
+        if ( ! empty($this->sum)) {
50 50
             $result['sum'] = $this->getSum();
51 51
         }
52 52
         return $result;
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
             throw new LPTrackerSDKException('Payment purpose is required');
67 67
         }
68 68
 
69
-        if (!isset($this->sum)) {
69
+        if ( ! isset($this->sum)) {
70 70
             throw new LPTrackerSDKException('Payment sum is required');
71 71
         }
72 72
 
Please login to merge, or discard this patch.
src/LPTracker/models/Contact.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -43,29 +43,29 @@  discard block
 block discarded – undo
43 43
 
44 44
     public function __construct(array $contactData = [])
45 45
     {
46
-        if (!empty($contactData['id'])) {
46
+        if ( ! empty($contactData['id'])) {
47 47
             $this->id = (int) $contactData['id'];
48 48
         }
49
-        if (!empty($contactData['project_id'])) {
49
+        if ( ! empty($contactData['project_id'])) {
50 50
             $this->projectId = (int) $contactData['project_id'];
51 51
         }
52
-        if (!empty($contactData['name'])) {
52
+        if ( ! empty($contactData['name'])) {
53 53
             $this->name = $contactData['name'];
54 54
         }
55
-        if (!empty($contactData['profession'])) {
55
+        if ( ! empty($contactData['profession'])) {
56 56
             $this->profession = $contactData['profession'];
57 57
         }
58
-        if (!empty($contactData['site'])) {
58
+        if ( ! empty($contactData['site'])) {
59 59
             $this->site = $contactData['site'];
60 60
         }
61
-        if (!empty($contactData['details']) && is_array($contactData['details'])) {
61
+        if ( ! empty($contactData['details']) && is_array($contactData['details'])) {
62 62
             foreach ($contactData['details'] as $detail) {
63 63
                 $detail['contact_id'] = $this->id;
64 64
                 $detailModel = new ContactDetail($detail);
65 65
                 $this->addDetail($detailModel);
66 66
             }
67 67
         }
68
-        if (!empty($contactData['fields']) && is_array($contactData['fields'])) {
68
+        if ( ! empty($contactData['fields']) && is_array($contactData['fields'])) {
69 69
             foreach ($contactData['fields'] as $fieldData) {
70 70
                 $fieldData['contact_id'] = $this->id;
71 71
                 $fieldModel = new ContactField($fieldData);
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         }
90 90
 
91 91
         foreach ($this->details as $detail) {
92
-            if (!$detail->validate()) {
92
+            if ( ! $detail->validate()) {
93 93
                 throw new LPTrackerSDKException('The contact does not have valid detail');
94 94
             }
95 95
         }
@@ -105,16 +105,16 @@  discard block
 block discarded – undo
105 105
             'project_id' => $this->getProjectId(),
106 106
             'details' => [],
107 107
         ];
108
-        if (!empty($this->id)) {
108
+        if ( ! empty($this->id)) {
109 109
             $result['id'] = $this->getId();
110 110
         }
111
-        if (!empty($this->name)) {
111
+        if ( ! empty($this->name)) {
112 112
             $result['name'] = $this->getName();
113 113
         }
114
-        if (!empty($this->profession)) {
114
+        if ( ! empty($this->profession)) {
115 115
             $result['profession'] = $this->getProfession();
116 116
         }
117
-        if (!empty($this->site)) {
117
+        if ( ! empty($this->site)) {
118 118
             $result['site'] = $this->getSite();
119 119
         }
120 120
         foreach ($this->getDetails() as $detail) {
Please login to merge, or discard this patch.
src/LPTracker/LPTrackerRequest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         if (empty($baseUrl)) {
31 31
             $baseUrl = LPTrackerBase::DEFAULT_ADDRESS;
32 32
         }
33
-        $url = $baseUrl . $actionUrl;
33
+        $url = $baseUrl.$actionUrl;
34 34
         $curl = new cURL();
35 35
         $request = $curl->newRequest($method, $url, $data, Request::ENCODING_JSON);
36 36
         $request->setHeader('Content-Type', 'application/json');
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
             throw new LPTrackerServerException('Can`t decode response');
48 48
         }
49 49
 
50
-        if (!empty($body['errors'])) {
51
-            if (!empty($body['errors'][0]['message'])) {
50
+        if ( ! empty($body['errors'])) {
51
+            if ( ! empty($body['errors'][0]['message'])) {
52 52
                 throw new LPTrackerResponseException($body['errors'][0]['message']);
53 53
             }
54 54
 
Please login to merge, or discard this patch.
src/LPTracker/LPTrackerBase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,13 +81,13 @@
 block discarded – undo
81 81
         if (empty($config['token'])) {
82 82
             if (empty($config['login'])) {
83 83
                 throw new LPTrackerSDKException(
84
-                    'Required "login" key not supplied in config and could not find fallback environment variable "' . static::LOGIN_ENV_NAME . '"'
84
+                    'Required "login" key not supplied in config and could not find fallback environment variable "'.static::LOGIN_ENV_NAME.'"'
85 85
                 );
86 86
             }
87 87
 
88 88
             if (empty($config['password'])) {
89 89
                 throw new LPTrackerSDKException(
90
-                    'Required "password" key not supplied in config and could not find fallback environment variable "' . static::PASSWORD_ENV_NAME . '"'
90
+                    'Required "password" key not supplied in config and could not find fallback environment variable "'.static::PASSWORD_ENV_NAME.'"'
91 91
                 );
92 92
             }
93 93
         }
Please login to merge, or discard this patch.
src/LPTracker/models/LeadFile.php 3 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace LPTracker\models;
4 4
 
5
-use LPTracker\exceptions\LPTrackerSDKException;
6
-
7 5
 class LeadFile extends Model
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -28,16 +28,16 @@  discard block
 block discarded – undo
28 28
 
29 29
     public function __construct(array $fileData = [])
30 30
     {
31
-        if (!empty($fileData['id'])) {
31
+        if ( ! empty($fileData['id'])) {
32 32
             $this->id = (int) $fileData['id'];
33 33
         }
34
-        if (!empty($fileData['name'])) {
34
+        if ( ! empty($fileData['name'])) {
35 35
             $this->name = $fileData['name'];
36 36
         }
37
-        if (!empty($fileData['ext'])) {
37
+        if ( ! empty($fileData['ext'])) {
38 38
             $this->ext = $fileData['ext'];
39 39
         }
40
-        if (!empty($fileData['data'])) {
40
+        if ( ! empty($fileData['data'])) {
41 41
             $this->data = $fileData['data'];
42 42
         }
43 43
     }
@@ -48,16 +48,16 @@  discard block
 block discarded – undo
48 48
     public function toArray()
49 49
     {
50 50
         $result = [];
51
-        if (!empty($this->id)) {
51
+        if ( ! empty($this->id)) {
52 52
             $result['id'] = $this->getId();
53 53
         }
54
-        if (!empty($this->name)) {
54
+        if ( ! empty($this->name)) {
55 55
             $result['name'] = $this->getName();
56 56
         }
57
-        if (!empty($this->ext)) {
57
+        if ( ! empty($this->ext)) {
58 58
             $result['ext'] = $this->getExt();
59 59
         }
60
-        if (!empty($this->data)) {
60
+        if ( ! empty($this->data)) {
61 61
             $result['data'] = $this->getData();
62 62
         }
63 63
         return $result;
@@ -102,15 +102,15 @@  discard block
 block discarded – undo
102 102
      */
103 103
     public function saveFile($path)
104 104
     {
105
-        try{
105
+        try {
106 106
             $content = $this->getData();
107
-            if(!empty($content)){
107
+            if ( ! empty($content)) {
108 108
                 @file_put_contents($path, base64_decode($content));
109 109
             }
110
-        }catch(\Exception $e){}
110
+        } catch (\Exception $e) {}
111 111
     }
112 112
 
113
-    public function validate(){
113
+    public function validate() {
114 114
         return true;
115 115
     }
116 116
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
             if(!empty($content)){
108 108
                 @file_put_contents($path, base64_decode($content));
109 109
             }
110
-        }catch(\Exception $e){}
110
+        } catch(\Exception $e){}
111 111
     }
112 112
 
113 113
     public function validate(){
Please login to merge, or discard this patch.
src/LPTracker/LPTracker.php 1 patch
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         } else {
91 91
             $project = (int) $project;
92 92
         }
93
-        $url = '/project/' . $project;
93
+        $url = '/project/'.$project;
94 94
         $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address);
95 95
         return new Project($response);
96 96
     }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
         } else {
120 120
             $project = (int) $project;
121 121
         }
122
-        $url = '/project/' . $project . '/customs';
122
+        $url = '/project/'.$project.'/customs';
123 123
         $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address);
124 124
         $result = [];
125 125
         foreach ($response as $customData) {
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
         } else {
142 142
             $project = (int) $project;
143 143
         }
144
-        $url = '/project/' . $project . '/funnel';
144
+        $url = '/project/'.$project.'/funnel';
145 145
         $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address);
146 146
         $result = [];
147 147
         foreach ($response as $stageData) {
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
         } else {
164 164
             $project = (int) $project;
165 165
         }
166
-        $url = '/project/' . $project . '/fields';
166
+        $url = '/project/'.$project.'/fields';
167 167
         $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address);
168 168
         $result = [];
169 169
         foreach ($response as $customData) {
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
         } else {
186 186
             $project = (int) $project;
187 187
         }
188
-        $url = '/project/' . $project . '/callback-url';
188
+        $url = '/project/'.$project.'/callback-url';
189 189
         LPTrackerRequest::sendRequest($url, ['url' => $callbackUrl], 'PUT', $this->token, $this->address);
190 190
     }
191 191
 
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
             throw new LPTrackerSDKException('Invalid contact ID');
262 262
         }
263 263
 
264
-        $url = '/contact/' . $contact;
264
+        $url = '/contact/'.$contact;
265 265
         $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address);
266 266
         return new Contact($response);
267 267
     }
@@ -273,12 +273,12 @@  discard block
 block discarded – undo
273 273
      */
274 274
     public function saveContact(Contact $contact)
275 275
     {
276
-        if (!$contact->validate()) {
276
+        if ( ! $contact->validate()) {
277 277
             throw new LPTrackerSDKException('Invalid contact');
278 278
         }
279 279
 
280 280
         $data = $contact->toArray();
281
-        if (!empty($data['fields'])) {
281
+        if ( ! empty($data['fields'])) {
282 282
             $fields = [];
283 283
             foreach ($data['fields'] as $field) {
284 284
                 $fields[$field['id']] = $field['value'];
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
             $data['fields'] = $fields;
287 287
         }
288 288
         if ($contact->getId() > 0) {
289
-            $url = '/contact/' . $contact->getId();
289
+            $url = '/contact/'.$contact->getId();
290 290
             $response = LPTrackerRequest::sendRequest($url, $contact->toArray(), 'PUT', $this->token, $this->address);
291 291
         } else {
292 292
             $response = LPTrackerRequest::sendRequest('/contact', $contact->toArray(), 'POST', $this->token, $this->address);
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
         if (isset($searchOptions['phone'])) {
361 361
             $data['phone'] = $searchOptions['phone'];
362 362
         }
363
-        $url = '/contact/search?' . http_build_query($data);
363
+        $url = '/contact/search?'.http_build_query($data);
364 364
         $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address);
365 365
         $result = [];
366 366
         foreach ($response as $contactData) {
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
             throw new LPTrackerSDKException('Invalid contact id');
386 386
         }
387 387
 
388
-        $url = '/contact/' . $contact . '/leads';
388
+        $url = '/contact/'.$contact.'/leads';
389 389
         $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address);
390 390
         $result = [];
391 391
         foreach ($response as $leadData) {
@@ -425,7 +425,7 @@  discard block
 block discarded – undo
425 425
         } else {
426 426
             $field = (int) $field;
427 427
         }
428
-        $url = '/contact/' . $contact . '/field/' . $field;
428
+        $url = '/contact/'.$contact.'/field/'.$field;
429 429
         $data = [
430 430
             'value' => $newValue,
431 431
         ];
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
             $viewData['project_id'] = (int) $project;
448 448
         }
449 449
         $view = new View($viewData);
450
-        if (!$view->validate()) {
450
+        if ( ! $view->validate()) {
451 451
             throw new LPTrackerSDKException('Invalid view data');
452 452
         }
453 453
 
@@ -472,7 +472,7 @@  discard block
 block discarded – undo
472 472
             throw new LPTrackerSDKException('Invalid view ID');
473 473
         }
474 474
 
475
-        $url = '/view/' . $view;
475
+        $url = '/view/'.$view;
476 476
         $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address);
477 477
         return new View($response);
478 478
     }
@@ -484,12 +484,12 @@  discard block
 block discarded – undo
484 484
      */
485 485
     public function saveView(View $view)
486 486
     {
487
-        if (!$view->validate()) {
487
+        if ( ! $view->validate()) {
488 488
             throw new LPTrackerSDKException('Invalid view');
489 489
         }
490 490
 
491 491
         if ($view->getId() > 0) {
492
-            $url = '/view/' . $view->getId();
492
+            $url = '/view/'.$view->getId();
493 493
             $response = LPTrackerRequest::sendRequest($url, $view->toArray(), 'PUT', $this->token, $this->address);
494 494
         } else {
495 495
             $response = LPTrackerRequest::sendRequest('/view', $view->toArray(), 'POST', $this->token, $this->address);
@@ -530,11 +530,11 @@  discard block
 block discarded – undo
530 530
             $leadData['contact_id'] = (int) $contact;
531 531
         }
532 532
         $lead = new Lead($leadData);
533
-        if (!$lead->validate()) {
533
+        if ( ! $lead->validate()) {
534 534
             throw new LPTrackerSDKException('Invalid lead data');
535 535
         }
536 536
 
537
-        if (!empty($lead->getView()) && empty($lead->getView()->getId())) {
537
+        if ( ! empty($lead->getView()) && empty($lead->getView()->getId())) {
538 538
             $contactModel = $this->getContact($contact);
539 539
             $viewData = $lead->getView()->toArray();
540 540
             $lead->setView($this->createView($contactModel->getProjectId(), $viewData));
@@ -545,7 +545,7 @@  discard block
 block discarded – undo
545 545
         }
546 546
         if (isset($leadData['view_id'])) {
547 547
             $data['view_id'] = (int) $leadData['view_id'];
548
-        } elseif (!empty($lead->getView()) && !empty($lead->getView()->getId())) {
548
+        } elseif ( ! empty($lead->getView()) && ! empty($lead->getView()->getId())) {
549 549
             $data['view_id'] = $lead->getView()->getId();
550 550
         }
551 551
         $response = LPTrackerRequest::sendRequest('/lead', $data, 'POST', $this->token, $this->address);
@@ -568,7 +568,7 @@  discard block
 block discarded – undo
568 568
             throw new LPTrackerSDKException('Invalid lead ID');
569 569
         }
570 570
 
571
-        $url = '/lead/' . $lead;
571
+        $url = '/lead/'.$lead;
572 572
         $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address);
573 573
         return new Lead($response);
574 574
     }
@@ -597,12 +597,12 @@  discard block
 block discarded – undo
597 597
         if ($custom <= 0) {
598 598
             throw new LPTrackerSDKException('Invalid custom ID');
599 599
         }
600
-        $file = (int)$file;
600
+        $file = (int) $file;
601 601
         if ($file <= 0) {
602 602
             throw new LPTrackerSDKException('Invalid file ID');
603 603
         }
604 604
 
605
-        $url = '/lead/' . $lead . '/custom/' . $custom . '/file/' . $file;
605
+        $url = '/lead/'.$lead.'/custom/'.$custom.'/file/'.$file;
606 606
         $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address);
607 607
         return new LeadFile($response);
608 608
     }
@@ -614,12 +614,12 @@  discard block
 block discarded – undo
614 614
      */
615 615
     public function saveLead(Lead $lead)
616 616
     {
617
-        if (!$lead->validate()) {
617
+        if ( ! $lead->validate()) {
618 618
             throw new LPTrackerSDKException('Invalid lead');
619 619
         }
620 620
 
621 621
         if ($lead->getId() > 0) {
622
-            $url = '/lead/' . $lead->getId();
622
+            $url = '/lead/'.$lead->getId();
623 623
             $response = LPTrackerRequest::sendRequest($url, $lead->toArray(true), 'PUT', $this->token, $this->address);
624 624
         } else {
625 625
             $response = LPTrackerRequest::sendRequest(
@@ -683,7 +683,7 @@  discard block
 block discarded – undo
683 683
             throw new LPTrackerSDKException('Invalid lead ID');
684 684
         }
685 685
 
686
-        $url = '/lead/' . $lead . '/payment';
686
+        $url = '/lead/'.$lead.'/payment';
687 687
         $data = [
688 688
             'category' => $category,
689 689
             'purpose' => $purpose,
@@ -721,7 +721,7 @@  discard block
 block discarded – undo
721 721
         } else {
722 722
             $lead = (int) $lead;
723 723
         }
724
-        $url = '/lead/' . $lead . '/funnel';
724
+        $url = '/lead/'.$lead.'/funnel';
725 725
         $data = [
726 726
             'funnel' => $newStageId,
727 727
             'options' => $options,
@@ -756,7 +756,7 @@  discard block
 block discarded – undo
756 756
         } else {
757 757
             $lead = (int) $lead;
758 758
         }
759
-        $url = '/lead/' . $lead . '/owner';
759
+        $url = '/lead/'.$lead.'/owner';
760 760
         $data = [
761 761
             'owner' => $newOwnerId,
762 762
             'options' => $options,
@@ -778,7 +778,7 @@  discard block
 block discarded – undo
778 778
         } else {
779 779
             $lead = (int) $lead;
780 780
         }
781
-        $url = '/lead/' . $lead . '/comments';
781
+        $url = '/lead/'.$lead.'/comments';
782 782
         $response = LPTrackerRequest::sendRequest($url, [], 'GET', $this->token, $this->address);
783 783
         $result = [];
784 784
         foreach ($response as $commentData) {
@@ -802,7 +802,7 @@  discard block
 block discarded – undo
802 802
         } else {
803 803
             $lead = (int) $lead;
804 804
         }
805
-        $url = '/lead/' . $lead . '/comment';
805
+        $url = '/lead/'.$lead.'/comment';
806 806
         $data = [
807 807
             'text' => $text,
808 808
             'options' => $options,
@@ -830,7 +830,7 @@  discard block
 block discarded – undo
830 830
         } else {
831 831
             $custom = (int) $custom;
832 832
         }
833
-        $url = '/lead/' . $lead . '/file';
833
+        $url = '/lead/'.$lead.'/file';
834 834
         $data = [
835 835
             'name' => pathinfo($absolutePath, PATHINFO_BASENAME),
836 836
             'mime' => mime_content_type($absolutePath),
@@ -847,11 +847,11 @@  discard block
 block discarded – undo
847 847
      */
848 848
     public function saveLeadCustom(Custom $custom, array $options = [])
849 849
     {
850
-        if (!$custom->validate() || empty($custom->getLeadId())) {
850
+        if ( ! $custom->validate() || empty($custom->getLeadId())) {
851 851
             throw new LPTrackerSDKException('Invalid custom');
852 852
         }
853 853
 
854
-        $url = '/lead/' . $custom->getLeadId() . '/custom/' . $custom->getId();
854
+        $url = '/lead/'.$custom->getLeadId().'/custom/'.$custom->getId();
855 855
         if ($custom->getValue() === null) {
856 856
             $data = [
857 857
                 'options' => $options,
@@ -912,7 +912,7 @@  discard block
 block discarded – undo
912 912
         } else {
913 913
             $project = (int) $project;
914 914
         }
915
-        $actionUrl = '/custom/' . $project . '/create';
915
+        $actionUrl = '/custom/'.$project.'/create';
916 916
         $response = LPTrackerRequest::sendRequest($actionUrl, $options, 'POST', $this->token, $this->address);
917 917
         return new CustomField($response);
918 918
     }
@@ -935,7 +935,7 @@  discard block
 block discarded – undo
935 935
         } else {
936 936
             $project = (int) $project;
937 937
         }
938
-        $actionUrl = '/lead/' . $project . '/list?' . http_build_query([
938
+        $actionUrl = '/lead/'.$project.'/list?'.http_build_query([
939 939
             'offset' => $offset,
940 940
             'limit' => $limit,
941 941
             'sort' => $sort,
Please login to merge, or discard this patch.