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 ( 731744...5fc10a )
by Cees-Jan
03:58
created
src/AbstractEmptyResourceTest.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 namespace ApiClients\Tools\ResourceTestUtilities;
5 5
 
6
-use phpDocumentor\Reflection\DocBlock;
7 6
 use ReflectionClass;
8 7
 use Throwable;
9 8
 use TypeError;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ApiClients\Tools\ResourceTestUtilities;
5 5
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
                 self::assertTrue(true);
43 43
                 continue;
44 44
             } catch (Throwable $t) {
45
-                self::fail('Should have thrown a TypeError instead of a ' . get_class($t));
45
+                self::fail('Should have thrown a TypeError instead of a '.get_class($t));
46 46
             }
47 47
         }
48 48
     }
Please login to merge, or discard this patch.