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 ( 6dbaad...d04f27 )
by Sergey
02:21
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/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/models/Lead.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -58,22 +58,22 @@  discard block
 block discarded – undo
58 58
 
59 59
     public function __construct(array $leadData = [])
60 60
     {
61
-        if (!empty($leadData['id'])) {
61
+        if ( ! empty($leadData['id'])) {
62 62
             $this->id = (int) $leadData['id'];
63 63
         }
64
-        if (!empty($leadData['contact_id'])) {
64
+        if ( ! empty($leadData['contact_id'])) {
65 65
             $this->contactId = (int) $leadData['contact_id'];
66 66
         }
67
-        if (!empty($leadData['name'])) {
67
+        if ( ! empty($leadData['name'])) {
68 68
             $this->name = $leadData['name'];
69 69
         }
70
-        if (!empty($leadData['funnel'])) {
70
+        if ( ! empty($leadData['funnel'])) {
71 71
             $this->funnelId = (int) $leadData['funnel'];
72 72
         }
73
-        if (!empty($leadData['stage_id'])) {
73
+        if ( ! empty($leadData['stage_id'])) {
74 74
             $this->funnelId = (int) $leadData['stage_id'];
75 75
         }
76
-        if (!empty($leadData['view'])) {
76
+        if ( ! empty($leadData['view'])) {
77 77
             $this->view = new View($leadData['view']);
78 78
         }
79 79
         if (isset($leadData['owner'])) {
@@ -82,30 +82,30 @@  discard block
 block discarded – undo
82 82
         if (isset($leadData['owner_id'])) {
83 83
             $this->ownerId = (int) $leadData['owner_id'];
84 84
         }
85
-        if (!empty($leadData['payments']) && is_array($leadData['payments'])) {
85
+        if ( ! empty($leadData['payments']) && is_array($leadData['payments'])) {
86 86
             foreach ($leadData['payments'] as $paymentData) {
87 87
                 $paymentModel = new Payment($paymentData);
88 88
                 $this->addPayment($paymentModel);
89 89
             }
90 90
         }
91
-        if (!empty($leadData['custom']) && is_array($leadData['custom'])) {
91
+        if ( ! empty($leadData['custom']) && is_array($leadData['custom'])) {
92 92
             foreach ($leadData['custom'] as $customData) {
93 93
                 $customModel = new Custom($customData, $this->id);
94 94
                 $this->addCustom($customModel);
95 95
             }
96 96
         }
97
-        if (!empty($leadData['lead_date'])) {
97
+        if ( ! empty($leadData['lead_date'])) {
98 98
             $date = \DateTime::createFromFormat('d.m.Y H:i', $leadData['lead_date']);
99 99
             $this->setCreatedAt($date);
100 100
         }
101
-        if (!empty($leadData['created_at'])) {
101
+        if ( ! empty($leadData['created_at'])) {
102 102
             $date = \DateTime::createFromFormat('d.m.Y H:i', $leadData['created_at']);
103 103
             $this->setCreatedAt($date);
104 104
         }
105
-        if (!empty($leadData['deal_date'])) {
105
+        if ( ! empty($leadData['deal_date'])) {
106 106
             $this->options['deal_date'] = $leadData['deal_date'];
107 107
         }
108
-        if (!empty($leadData['params']) && is_array($leadData['params'])) {
108
+        if ( ! empty($leadData['params']) && is_array($leadData['params'])) {
109 109
             $this->options['params'] = $leadData['params'];
110 110
         }
111 111
     }
@@ -119,24 +119,24 @@  discard block
 block discarded – undo
119 119
         $result = [
120 120
             'contact_id' => $this->contactId,
121 121
         ];
122
-        if (!empty($this->id)) {
122
+        if ( ! empty($this->id)) {
123 123
             $result['id'] = $this->getId();
124 124
         }
125
-        if (!empty($this->name)) {
125
+        if ( ! empty($this->name)) {
126 126
             $result['name'] = $this->getName();
127 127
         }
128
-        if (!empty($this->funnelId)) {
128
+        if ( ! empty($this->funnelId)) {
129 129
             $result['funnel'] = $this->getFunnelId();
130 130
             $result['stage_id'] = $this->getFunnelId();
131 131
         }
132
-        if (!empty($this->ownerId)) {
132
+        if ( ! empty($this->ownerId)) {
133 133
             $result['owner'] = $this->getOwnerId();
134 134
             $result['owner_id'] = $this->getOwnerId();
135 135
         }
136
-        if (!empty($this->createdAt)) {
136
+        if ( ! empty($this->createdAt)) {
137 137
             $result['lead_date'] = $this->getCreatedAt()->format('d.m.Y H:i');
138 138
         }
139
-        if (!empty($this->view)) {
139
+        if ( ! empty($this->view)) {
140 140
             $result['view'] = $this->view->toArray();
141 141
         }
142 142
         foreach ($this->getPayments() as $payment) {
@@ -169,11 +169,11 @@  discard block
 block discarded – undo
169 169
             throw new LPTrackerSDKException('Invalid contact id');
170 170
         }
171 171
 
172
-        if (!empty($this->funnelId) && (int) $this->funnelId <= 0) {
172
+        if ( ! empty($this->funnelId) && (int) $this->funnelId <= 0) {
173 173
             throw new LPTrackerSDKException('Invalid funnel ID');
174 174
         }
175 175
 
176
-        if (!empty($this->ownerId) && (int) $this->ownerId < 0) {
176
+        if ( ! empty($this->ownerId) && (int) $this->ownerId < 0) {
177 177
             throw new LPTrackerSDKException('Invalid owner ID');
178 178
         }
179 179
 
Please login to merge, or discard this patch.
src/LPTracker/models/ContactField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 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.