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 ( 3df63f...4e592b )
by François
02:22
created
src/fkooman/VPN/Server/IP.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     public function __construct($cidrIp)
30 30
     {
31 31
         // must be of form IP/PREFIX
32
-        if (1 !==  substr_count($cidrIp, '/')) {
32
+        if (1 !== substr_count($cidrIp, '/')) {
33 33
             throw new InvalidArgumentException('not in CIDR format');
34 34
         }
35 35
         list($ip, $prefix) = explode('/', $cidrIp);
Please login to merge, or discard this patch.