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 ( d42e2b...ab132c )
by De
03:07
created
src/Document.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -132,11 +132,17 @@
 block discarded – undo
132 132
         return $this->options;
133 133
     }
134 134
 
135
+    /**
136
+     * @param string $name
137
+     */
135 138
     public function getOption($name, $default = null)
136 139
     {
137 140
         return isset($this->options[$name]) ? $this->options[$name] : $default;
138 141
     }
139 142
 
143
+    /**
144
+     * @param string $name
145
+     */
140 146
     public function hasOption($name)
141 147
     {
142 148
         return isset($this->options[$name]);
Please login to merge, or discard this patch.