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.

Code Duplication    Length = 3-3 lines in 2 locations

src/Loader/ConditionalResultDescriptor.php 1 location

@@ 190-192 (lines=3) @@
187
        }
188
189
        $dueDate = $this->getDueDate();
190
        if (null !== $dueDate && is_string($dueDate) && strlen($dueDate) > 0) {
191
            $descriptor->setAttribute('due-date', $dueDate);
192
        }
193
194
        $oldStatus = $this->getOldStatus();
195
        if (null === $oldStatus) {

src/Loader/ResultDescriptor.php 1 location

@@ 483-485 (lines=3) @@
480
        }
481
482
        $dueDate = $this->getDueDate();
483
        if (null !== $dueDate && is_string($dueDate) && strlen($dueDate) > 0) {
484
            $descriptor->setAttribute('due-date', $dueDate);
485
        }
486
487
        $oldStatus = $this->getOldStatus();
488
        if (null === $oldStatus) {