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 ( 30aa65...5345ef )
by Sergey
01:45
created
src/LPTracker/models/View.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -125,28 +125,28 @@
 block discarded – undo
125 125
         $result = [
126 126
             'project_id' => $this->getProjectId(),
127 127
         ];
128
-        if (!empty($this->id)) {
128
+        if ( ! empty($this->id)) {
129 129
             $result['id'] = $this->getId();
130 130
         }
131
-        if (!empty($this->uuid)) {
131
+        if ( ! empty($this->uuid)) {
132 132
             $result['uuid'] = $this->getUuid();
133 133
         }
134
-        if (!empty($this->ymClientId)) {
134
+        if ( ! empty($this->ymClientId)) {
135 135
             $result['ym_client_id'] = $this->getYmClientId();
136 136
         }
137
-        if (!empty($this->gaClientId)) {
137
+        if ( ! empty($this->gaClientId)) {
138 138
             $result['ga_client_id'] = $this->getGaClientId();
139 139
         }
140
-        if (!empty($this->source)) {
140
+        if ( ! empty($this->source)) {
141 141
             $result['source'] = $this->getSource();
142 142
         }
143
-        if (!empty($this->campaign)) {
143
+        if ( ! empty($this->campaign)) {
144 144
             $result['campaign'] = $this->getCampaign();
145 145
         }
146
-        if (!empty($this->keyword)) {
146
+        if ( ! empty($this->keyword)) {
147 147
             $result['keyword'] = $this->getKeyword();
148 148
         }
149
-        if (!empty($this->seoSystem)) {
149
+        if ( ! empty($this->seoSystem)) {
150 150
             $result['seo_system'] = $this->getSeoSystem();
151 151
         }
152 152
         if ($this->visitor !== null) {
Please login to merge, or discard this patch.