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

tests/Parse/CreateTableTest.php 2 locations

@@ 91-99 (lines=9) @@
88
            if ($sql === false) {
89
                $this->fail("could not open $path");
90
            }
91
            foreach (preg_split('/^-- test .*$/m', $sql) as $pair) {
92
                if (trim($pair) != '') {
93
                    list($text, $expected) = preg_split('/(?<=;)/', $pair);
94
                    $tests[] = [
95
                        trim($text),
96
                        trim($expected)
97
                    ];
98
                }
99
            }
100
        }
101
102
        return $tests;
@@ 147-156 (lines=10) @@
144
            if ($sql === false) {
145
                $this->fail("could not open $path");
146
            }
147
            foreach (preg_split('/^-- test .*$/m', $sql) as $pair) {
148
                if (trim($pair) != '') {
149
                    list($firstText, $secondText, $expected) = preg_split('/(?<=;)/', $pair);
150
                    $tests[] = [
151
                        trim($firstText),
152
                        trim($secondText),
153
                        trim($expected)
154
                    ];
155
                }
156
            }
157
        }
158
159
        return $tests;