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

src/Kunstmaan/Skylab/Provider/DialogProvider.php 2 locations

@@ 198-207 (lines=10) @@
195
    /**
196
     * @param string $message
197
     */
198
    public function logConfig($message)
199
    {
200
        if ($this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
201
            $this->output->writeln('<info>   %</info> <comment>' . $message . '</comment> ');
202
        } else {
203
            if($this->progress != null) {
204
                $this->progress->advance();
205
            }
206
        }
207
    }
208
209
    /**
210
     * @param string $message
@@ 212-221 (lines=10) @@
209
    /**
210
     * @param string $message
211
     */
212
    public function logNotice($message)
213
    {
214
        if ($this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
215
            $this->output->writeln('<info>   !</info> <comment>' . $message . '</comment> ');
216
        } else {
217
            if($this->progress != null) {
218
                $this->progress->advance();
219
            }
220
        }
221
    }
222
223
    /**
224
     * @param $message