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
Branch master (35abb4)
by De
03:34 queued 01:30
created
src/Structure.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
      *
161 161
      * @param string $selector
162 162
      * @param string|callable $className string class name or closure, which accept data and return string class name
163
-     * @return object representation of document with class, passed as argument
163
+     * @return null|Structure representation of document with class, passed as argument
164 164
      * @throws \Sokil\Mongo\Exception
165 165
      */
166 166
     public function getObject($selector, $className = '\Sokil\Mongo\Structure')
@@ -298,6 +298,9 @@  discard block
 block discarded – undo
298 298
         return $this;
299 299
     }
300 300
 
301
+    /**
302
+     * @param string $selector
303
+     */
301 304
     public function has($selector)
302 305
     {
303 306
         $pointer = &$this->data;
@@ -361,6 +364,9 @@  discard block
 block discarded – undo
361 364
         return (array) $value;
362 365
     }
363 366
 
367
+    /**
368
+     * @param string $selector
369
+     */
364 370
     public function unsetField($selector)
365 371
     {
366 372
         // modify
Please login to merge, or discard this patch.