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 = 5-6 lines in 2 locations

src/DataObjects/AbstractCmisObject.php 2 locations

@@ 162-167 (lines=6) @@
159
        }
160
161
        // handle allowable actions
162
        if ($objectData->getAllowableActions() !== null) {
163
            $this->allowableActions = $objectData->getAllowableActions();
164
            $this->extensions[(string) ExtensionLevel::cast(
165
                ExtensionLevel::ALLOWABLE_ACTIONS
166
            )] = $objectData->getAllowableActions()->getExtensions();
167
        }
168
169
        // handle renditions
170
        foreach ($objectData->getRenditions() as $rendition) {
@@ 175-179 (lines=5) @@
172
        }
173
174
        // handle ACL
175
        if ($objectData->getAcl() !== null) {
176
            $this->acl = $objectData->getAcl();
177
            $this->extensions[(string) ExtensionLevel::cast(ExtensionLevel::ACL)] = $objectData->getAcl(
178
            )->getExtensions();
179
        }
180
181
        // handle policies
182
        if ($objectData->getPolicyIds() !== null) {