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 = 10-11 lines in 2 locations

src/Rule/Each.php 1 location

@@ 93-103 (lines=11) @@
90
     * @param ValidationResult $result
91
     * @return bool
92
     */
93
    protected function handleError($index, $result)
94
    {
95
        foreach ($result->getFailures() as $failure) {
96
            $failure->overwriteKey(
97
                sprintf('%s.%s.%s', $this->key, $index, $failure->getKey())
98
            );
99
100
            $this->messageStack->append($failure);
101
        }
102
        return false;
103
    }
104
}
105

src/Rule/Inner.php 1 location

@@ 75-84 (lines=10) @@
72
    /**
73
     * @param ValidationResult $result
74
     */
75
    protected function handleError($result)
76
    {
77
        foreach ($result->getFailures() as $failure) {
78
            $failure->overwriteKey(
79
                sprintf('%s.%s', $this->key, $failure->getKey())
80
            );
81
82
            $this->messageStack->append($failure);
83
        }
84
    }
85
}
86