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

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