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

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