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 4 locations

src/Handler.php 4 locations

@@ 115-117 (lines=3) @@
112
        foreach ($actionsArray as $actionArray) {
113
            $action = new Action();
114
115
            if (isset($actionArray['name']) && is_string($actionArray['name'])) {
116
                $action->setName($actionArray['name']);
117
            }
118
119
            if (isset($actionArray['title']) && is_string($actionArray['title'])) {
120
                $action->setTitle($actionArray['title']);
@@ 123-125 (lines=3) @@
120
                $action->setTitle($actionArray['title']);
121
            }
122
123
            if (isset($actionArray['method']) && is_string($actionArray['method'])) {
124
                $action->setMethod($actionArray['method']);
125
            }
126
127
            if (isset($actionArray['href']) && is_string($actionArray['href'])) {
128
                $action->setHref($actionArray['href']);
@@ 127-129 (lines=3) @@
124
                $action->setMethod($actionArray['method']);
125
            }
126
127
            if (isset($actionArray['href']) && is_string($actionArray['href'])) {
128
                $action->setHref($actionArray['href']);
129
            }
130
131
            if (isset($actionArray['type']) && is_string($actionArray['type'])) {
132
                $action->setType($actionArray['type']);
@@ 131-133 (lines=3) @@
128
                $action->setHref($actionArray['href']);
129
            }
130
131
            if (isset($actionArray['type']) && is_string($actionArray['type'])) {
132
                $action->setType($actionArray['type']);
133
            }
134
135
            if (isset($actionArray['fields']) && is_array($actionArray['fields'])) {
136
                $fields = $this->getFieldsFromDataArray($actionArray['fields']);