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
Branch master (57c418)
by Brad
05:20
created
src/Compilers/Js.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 ////////////////////////////////////////////////////////////////////////////////
3 3
 // __________ __             ________                   __________
4 4
 // \______   \  |__ ______  /  _____/  ____ _____ ______\______   \ _______  ___
Please login to merge, or discard this patch.
src/Tasks/BuildAsset.php 1 patch
Spacing   +6 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 ////////////////////////////////////////////////////////////////////////////////
3 3
 // __________ __             ________                   __________
4 4
 // \______   \  |__ ______  /  _____/  ____ _____ ______\______   \ _______  ___
@@ -207,8 +207,7 @@  discard block
 block discarded – undo
207 207
         // Plus this should error out early if we can't write to the file
208 208
         if (!$result)
209 209
         {
210
-            throw new RuntimeException
211
-            (
210
+            throw new RuntimeException(
212 211
                 'We can not write to the destination file: '.
213 212
                 $this->destination->getPathname()
214 213
             );
@@ -259,15 +258,13 @@  discard block
 block discarded – undo
259 258
         // Does the compiler exist
260 259
         if (!class_exists($compiler_type))
261 260
         {
262
-            throw new RuntimeException
263
-            (
261
+            throw new RuntimeException(
264 262
                 'The source file type is not supported! - ('.$file.')'
265 263
             );
266 264
         }
267 265
 
268 266
         // Return the compiler
269
-        return new $compiler_type
270
-        (
267
+        return new $compiler_type(
271 268
             $file,
272 269
             $this->destination,
273 270
             $this->debug,
@@ -361,8 +358,7 @@  discard block
 block discarded – undo
361 358
         // Write the normal asset
362 359
         if (file_put_contents($this->destination->getPathname(), $asset_contents) === false)
363 360
         {
364
-            throw new RuntimeException
365
-            (
361
+            throw new RuntimeException(
366 362
                 'Failed to write asset: '.$this->destination->getPathname()
367 363
             );
368 364
         }
@@ -379,8 +375,7 @@  discard block
 block discarded – undo
379 375
 
380 376
             if (file_put_contents($gz_file_name, $gz_contents) === false)
381 377
             {
382
-                throw new RuntimeException
383
-                (
378
+                throw new RuntimeException(
384 379
                     'Failed to write gzipped version of asset: '.
385 380
                     $gz_file_name
386 381
                 );
Please login to merge, or discard this patch.
src/loadTasks.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 ////////////////////////////////////////////////////////////////////////////////
3 3
 // __________ __             ________                   __________
4 4
 // \______   \  |__ ______  /  _____/  ____ _____ ______\______   \ _______  ___
Please login to merge, or discard this patch.