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 ( 6a1cc3...5fc6ed )
by James
05:55
created
src/Parser.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -69,17 +69,17 @@
 block discarded – undo
69 69
         return $this;
70 70
     }
71 71
 
72
-     /**
73
-      * Getter for the server instance.
74
-      *
75
-      * @see Server\ServerInterface Server Documentation
76
-      *
77
-      * @param Server\ServerInterface the server instance
78
-      */
79
-     public function getServer()
80
-     {
81
-         return $this->server;
82
-     }
72
+        /**
73
+         * Getter for the server instance.
74
+         *
75
+         * @see Server\ServerInterface Server Documentation
76
+         *
77
+         * @param Server\ServerInterface the server instance
78
+         */
79
+        public function getServer()
80
+        {
81
+            return $this->server;
82
+        }
83 83
 
84 84
     /**
85 85
      * Getter for the active config main context.
Please login to merge, or discard this patch.
src/Parser/Checker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
      */
79 79
     public function isValidRegex()
80 80
     {
81
-        set_error_handler(function ($errno, $errstr) {
81
+        set_error_handler(function($errno, $errstr) {
82 82
             throw new InvalidArgumentException($errstr, $errno);
83 83
         }, E_WARNING);
84 84
 
Please login to merge, or discard this patch.