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
Pull Request — master (#99)
by Martin
07:44
created
src/Provider/SinergiBrowserDetector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@
 block discarded – undo
229 229
          * No result found?
230 230
          */
231 231
         if ($this->hasResult($browserRaw, $osRaw, $deviceRaw) !== true) {
232
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
232
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
233 233
         }
234 234
 
235 235
         /*
Please login to merge, or discard this patch.
src/Provider/WhichBrowser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
          * No result found?
186 186
          */
187 187
         if ($parser->isDetected() !== true) {
188
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
188
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
189 189
         }
190 190
 
191 191
         /*
Please login to merge, or discard this patch.
src/Provider/AbstractProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      */
154 154
     private function getPackages()
155 155
     {
156
-        if (! file_exists('composer.lock')) {
156
+        if (!file_exists('composer.lock')) {
157 157
             return;
158 158
         }
159 159
 
@@ -183,8 +183,8 @@  discard block
 block discarded – undo
183 183
      */
184 184
     protected function checkIfInstalled()
185 185
     {
186
-        if (! Package::isInstalled($this->getPackageName())) {
187
-            throw new PackageNotLoadedException('You need to install the package ' . $this->getPackageName() . ' to use this provider');
186
+        if (!Package::isInstalled($this->getPackageName())) {
187
+            throw new PackageNotLoadedException('You need to install the package '.$this->getPackageName().' to use this provider');
188 188
         }
189 189
     }
190 190
 
Please login to merge, or discard this patch.
src/Provider/Woothee.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
          * No result found?
200 200
          */
201 201
         if ($this->hasResult($resultRaw) !== true) {
202
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
202
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
203 203
         }
204 204
 
205 205
         /*
Please login to merge, or discard this patch.
src/Provider/UAParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -240,7 +240,7 @@
 block discarded – undo
240 240
          * No result found?
241 241
          */
242 242
         if ($this->hasResult($resultRaw) !== true) {
243
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
243
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
244 244
         }
245 245
 
246 246
         /*
Please login to merge, or discard this patch.
src/Provider/Zsxsoft.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -210,7 +210,7 @@
 block discarded – undo
210 210
          * No result found?
211 211
          */
212 212
         if ($this->hasResult($browser, $os, $device) !== true) {
213
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
213
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
214 214
         }
215 215
 
216 216
         /*
Please login to merge, or discard this patch.
src/Provider/DonatjUAParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
         $resultRaw = $functionName($userAgent);
112 112
 
113 113
         if ($this->hasResult($resultRaw) !== true) {
114
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
114
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
115 115
         }
116 116
 
117 117
         /*
Please login to merge, or discard this patch.
src/Provider/Endorphin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@
 block discarded – undo
192 192
          * No result found?
193 193
          */
194 194
         if ($this->hasResult($resultRaw) !== true) {
195
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
195
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
196 196
         }
197 197
 
198 198
         /*
Please login to merge, or discard this patch.
src/Provider/PiwikDeviceDetector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
          * No result found?
296 296
          */
297 297
         if ($this->hasResult($dd) !== true) {
298
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
298
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
299 299
         }
300 300
 
301 301
         /*
Please login to merge, or discard this patch.