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 ( dd213f...9082b5 )
by James
05:12
created
src/Server/Server.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,6 @@
 block discarded – undo
125 125
     /**
126 126
      * Sets the regexp that will match the starting block directives.
127 127
      *
128
-     * @param string $simpleDirective the regexp that will match the starting block directives
129 128
      */
130 129
     public function setStartMultiLine($startMultiLine)
131 130
     {
Please login to merge, or discard this patch.
src/Server/ServerException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
     /**
44 44
      * The exception to throw if a directive matcher is invalid.
45 45
      *
46
-     * @param string $prefix  the matcher
47 46
      * @param string $message the error message
47
+     * @param string $matcher
48 48
      *
49 49
      * @return ServerException the exception to throw
50 50
      */
Please login to merge, or discard this patch.
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.