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

lib/Core/Factory/EmailDataFactory.php 2 locations

@@ 134-136 (lines=3) @@
131
            }
132
        }
133
134
        if (!empty($this->config[ConfigurationConstants::DEFAULT_VARIABLES][$field])) {
135
            return $this->config[ConfigurationConstants::DEFAULT_VARIABLES][$field];
136
        }
137
138
        throw new MissingValueException($field);
139
    }
@@ 190-192 (lines=3) @@
187
188
        }
189
190
        if (!empty($this->config[ConfigurationConstants::DEFAULT_VARIABLES][$field])) {
191
            return [$this->config[ConfigurationConstants::DEFAULT_VARIABLES][$field]];
192
        }
193
194
        throw new MissingValueException($field);
195
    }