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

MaterializedPathBehavior.php 2 locations

@@ 680-682 (lines=3) @@
677
678
        $this->owner->setAttribute($this->depthAttribute, $this->node->getAttribute($this->depthAttribute) + 1);
679
680
        if ($this->treeAttribute !== null) {
681
            $this->owner->setAttribute($this->treeAttribute, $this->node->getAttribute($this->treeAttribute));
682
        }
683
684
        if ($this->sortAttribute !== null) {
685
            $to = $this->node->getChildren()->orderBy(null);
@@ 717-719 (lines=3) @@
714
715
        $this->owner->setAttribute($this->depthAttribute, $this->node->getAttribute($this->depthAttribute));
716
717
        if ($this->treeAttribute !== null) {
718
            $this->owner->setAttribute($this->treeAttribute, $this->node->getAttribute($this->treeAttribute));
719
        }
720
721
        if ($this->sortAttribute !== null) {
722
            $this->moveTo($this->node->getAttribute($this->sortAttribute), $forward);