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 ( bdbde4...6b1bf7 )
by De
04:09
created
src/Collection.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
      * Create document query builder
358 358
      *
359 359
      * @param $callable callable|null Function to configure query builder&
360
-     * @return \Sokil\Mongo\Cursor|\Sokil\Mongo\Expression
360
+     * @return Cursor
361 361
      */
362 362
     public function find($callable = null)
363 363
     {
@@ -439,7 +439,7 @@  discard block
 block discarded – undo
439 439
     /**
440 440
      * Store document to pool
441 441
      *
442
-     * @param array $document
442
+     * @param Document $document
443 443
      * @return \Sokil\Mongo\Collection
444 444
      */
445 445
     public function addDocumentToDocumentPool(Document $document)
@@ -580,7 +580,7 @@  discard block
 block discarded – undo
580 580
      * 
581 581
      * @param string|\MongoId $id
582 582
      * @param callable $callable cursor callable used to configure cursor
583
-     * @return \Sokil\Mongo\Document|array|null
583
+     * @return Document
584 584
      */
585 585
     public function getDocumentDirectly($id, $callable = null)
586 586
     {
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
      * Check if document belongs to collection
601 601
      *
602 602
      * @param \Sokil\Mongo\Document $document
603
-     * @return type
603
+     * @return boolean
604 604
      */
605 605
     public function hasDocument(Document $document)
606 606
     {
Please login to merge, or discard this patch.