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 ( 959197...30aa65 )
by
unknown
03:16 queued 01:32
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/View.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -79,19 +79,19 @@
 block discarded – undo
79 79
         $result = [
80 80
             'project_id' => $this->getProjectId(),
81 81
         ];
82
-        if (!empty($this->id)) {
82
+        if ( ! empty($this->id)) {
83 83
             $result['id'] = $this->getId();
84 84
         }
85
-        if (!empty($this->source)) {
85
+        if ( ! empty($this->source)) {
86 86
             $result['source'] = $this->getSource();
87 87
         }
88
-        if (!empty($this->campaign)) {
88
+        if ( ! empty($this->campaign)) {
89 89
             $result['campaign'] = $this->getCampaign();
90 90
         }
91
-        if (!empty($this->keyword)) {
91
+        if ( ! empty($this->keyword)) {
92 92
             $result['keyword'] = $this->getKeyword();
93 93
         }
94
-        if (!empty($this->seoSystem)) {
94
+        if ( ! empty($this->seoSystem)) {
95 95
             $result['seo_system'] = $this->getSeoSystem();
96 96
         }
97 97
         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/Custom.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -37,16 +37,16 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function __construct(array $customData = [], $leadId = 0)
39 39
     {
40
-        if (!empty($customData['id'])) {
40
+        if ( ! empty($customData['id'])) {
41 41
             $this->id = $customData['id'];
42 42
         }
43
-        if (!empty($customData['type'])) {
43
+        if ( ! empty($customData['type'])) {
44 44
             $this->type = $customData['type'];
45 45
         }
46
-        if (!empty($customData['name'])) {
46
+        if ( ! empty($customData['name'])) {
47 47
             $this->name = $customData['name'];
48 48
         }
49
-        if (!empty($customData['value'])) {
49
+        if ( ! empty($customData['value'])) {
50 50
             $this->value = $customData['value'];
51 51
         }
52 52
         if ($leadId > 0) {
@@ -62,13 +62,13 @@  discard block
 block discarded – undo
62 62
         $result = [
63 63
             'id' => $this->id,
64 64
         ];
65
-        if (!empty($this->type)) {
65
+        if ( ! empty($this->type)) {
66 66
             $result['type'] = $this->type;
67 67
         }
68
-        if (!empty($this->name)) {
68
+        if ( ! empty($this->name)) {
69 69
             $result['name'] = $this->name;
70 70
         }
71
-        if (!empty($this->value)) {
71
+        if ( ! empty($this->value)) {
72 72
             $result['value'] = $this->value;
73 73
         }
74 74
         return $result;
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/models/Lead.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -58,51 +58,51 @@  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
-        if (!empty($leadData['owner'])) {
79
+        if ( ! empty($leadData['owner'])) {
80 80
             $this->ownerId = (int) $leadData['owner'];
81 81
         }
82
-        if (!empty($leadData['payments']) && is_array($leadData['payments'])) {
82
+        if ( ! empty($leadData['payments']) && is_array($leadData['payments'])) {
83 83
             foreach ($leadData['payments'] as $paymentData) {
84 84
                 $paymentModel = new Payment($paymentData);
85 85
                 $this->addPayment($paymentModel);
86 86
             }
87 87
         }
88
-        if (!empty($leadData['custom']) && is_array($leadData['custom'])) {
88
+        if ( ! empty($leadData['custom']) && is_array($leadData['custom'])) {
89 89
             foreach ($leadData['custom'] as $customData) {
90 90
                 $customModel = new Custom($customData, $this->id);
91 91
                 $this->addCustom($customModel);
92 92
             }
93 93
         }
94
-        if (!empty($leadData['lead_date'])) {
94
+        if ( ! empty($leadData['lead_date'])) {
95 95
             $date = \DateTime::createFromFormat('d.m.Y H:i', $leadData['lead_date']);
96 96
             $this->setCreatedAt($date);
97 97
         }
98
-        if (!empty($leadData['created_at'])) {
98
+        if ( ! empty($leadData['created_at'])) {
99 99
             $date = \DateTime::createFromFormat('d.m.Y H:i', $leadData['created_at']);
100 100
             $this->setCreatedAt($date);
101 101
         }
102
-        if (!empty($leadData['deal_date'])) {
102
+        if ( ! empty($leadData['deal_date'])) {
103 103
             $this->options['deal_date'] = $leadData['deal_date'];
104 104
         }
105
-        if (!empty($leadData['params']) && is_array($leadData['params'])) {
105
+        if ( ! empty($leadData['params']) && is_array($leadData['params'])) {
106 106
             $this->options['params'] = $leadData['params'];
107 107
         }
108 108
     }
@@ -116,22 +116,22 @@  discard block
 block discarded – undo
116 116
         $result = [
117 117
             'contact_id' => $this->contactId,
118 118
         ];
119
-        if (!empty($this->id)) {
119
+        if ( ! empty($this->id)) {
120 120
             $result['id'] = $this->getId();
121 121
         }
122
-        if (!empty($this->name)) {
122
+        if ( ! empty($this->name)) {
123 123
             $result['name'] = $this->getName();
124 124
         }
125
-        if (!empty($this->funnelId)) {
125
+        if ( ! empty($this->funnelId)) {
126 126
             $result['funnel'] = $this->getFunnelId();
127 127
         }
128
-        if (!empty($this->ownerId)) {
128
+        if ( ! empty($this->ownerId)) {
129 129
             $result['owner'] = $this->getOwnerId();
130 130
         }
131
-        if (!empty($this->createdAt)) {
131
+        if ( ! empty($this->createdAt)) {
132 132
             $result['lead_date'] = $this->getCreatedAt()->format('d.m.Y H:i');
133 133
         }
134
-        if (!empty($this->view)) {
134
+        if ( ! empty($this->view)) {
135 135
             $result['view'] = $this->view->toArray();
136 136
         }
137 137
         foreach ($this->getPayments() as $payment) {
@@ -164,11 +164,11 @@  discard block
 block discarded – undo
164 164
             throw new LPTrackerSDKException('Invalid contact id');
165 165
         }
166 166
 
167
-        if (!empty($this->funnelId) && (int) $this->funnelId <= 0) {
167
+        if ( ! empty($this->funnelId) && (int) $this->funnelId <= 0) {
168 168
             throw new LPTrackerSDKException('Invalid funnel ID');
169 169
         }
170 170
 
171
-        if (!empty($this->ownerId) && (int) $this->ownerId < 0) {
171
+        if ( ! empty($this->ownerId) && (int) $this->ownerId < 0) {
172 172
             throw new LPTrackerSDKException('Invalid owner ID');
173 173
         }
174 174
 
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.