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

@@ 731-733 (lines=3) @@
728
729
        $this->owner->setAttribute($this->depthAttribute, $this->node->getAttribute($this->depthAttribute) + 1);
730
731
        if ($this->treeAttribute !== null) {
732
            $this->owner->setAttribute($this->treeAttribute, $this->node->getAttribute($this->treeAttribute));
733
        }
734
735
        if ($this->sortAttribute !== null) {
736
            $to = $this->node->getChildren()->orderBy(null);
@@ 768-770 (lines=3) @@
765
766
        $this->owner->setAttribute($this->depthAttribute, $this->node->getAttribute($this->depthAttribute));
767
768
        if ($this->treeAttribute !== null) {
769
            $this->owner->setAttribute($this->treeAttribute, $this->node->getAttribute($this->treeAttribute));
770
        }
771
772
        if ($this->sortAttribute !== null) {
773
            $this->moveTo($this->node->getAttribute($this->sortAttribute), $forward);