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

src/DB/impls.php 2 locations

@@ 342-347 (lines=6) @@
339
                    $exprs[] = "$k $op ($stubs)";
340
                }else if($op == 'BETWEEN'){
341
                    $cond = "$k BETWEEN";
342
                    if(is_a($var[0], Raw::class)){
343
                        $cond = "$cond ".strval($var[0]);
344
                    }else{
345
                        $cond = "$cond ?";
346
                        $params[] = $var[0];
347
                    }
348
                    if(is_a($var[1], Raw::class)){
349
                        $cond = "$cond AND ".strval($var[1]);
350
                    }else{
@@ 348-353 (lines=6) @@
345
                        $cond = "$cond ?";
346
                        $params[] = $var[0];
347
                    }
348
                    if(is_a($var[1], Raw::class)){
349
                        $cond = "$cond AND ".strval($var[1]);
350
                    }else{
351
                        $cond = "$cond AND ?";
352
                        $params[] = $var[1];
353
                    }
354
                    $exprs[] = $cond;
355
                }else{
356
                    if(is_a($var, Raw::class)){