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

src/DaveChild/TextStatistics/Syllables.php 2 locations

@@ 342-344 (lines=3) @@
339
        $intSyllableCount = 0;
340
        $arrWords = explode(' ', $strText);
341
        $intWordCount = count($arrWords);
342
        for ($i = 0; $i < $intWordCount; $i++) {
343
            $intSyllableCount += self::syllableCount($arrWords[$i], $strEncoding);
344
        }
345
346
        return $intSyllableCount;
347
    }
@@ 360-362 (lines=3) @@
357
        $intSyllableCount = 0;
358
        $intWordCount = Text::wordCount($strText, $strEncoding);
359
        $arrWords = explode(' ', $strText);
360
        for ($i = 0; $i < $intWordCount; $i++) {
361
            $intSyllableCount += self::syllableCount($arrWords[$i], $strEncoding);
362
        }
363
        $averageSyllables = (Maths::bcCalc($intSyllableCount, '/', $intWordCount));
364
        return $averageSyllables;
365
    }