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

src/DB/impls.php 2 locations

@@ 215-226 (lines=12) @@
212
        }
213
    }
214
215
    public function setExpr(Context $context, $expr, $args){
216
        if($this->first){
217
            $this->first = false;
218
            $prefix = 'SET ';
219
        }else{
220
            $prefix = ',';
221
        }
222
223
        $context->appendSql("$prefix$expr",$prefix == 'SET ');
224
        $context->appendParams($args);
225
226
    }
227
    public function setArgs(Context $context, $values){
228
        $set = [];
229
        $params = [];
@@ 616-628 (lines=13) @@
613
        }
614
    }
615
616
    public function setExpr($context, $expr, $args){
617
        $prefix = '';
618
        if($this->first){
619
            $this->first = false;
620
            $prefix = 'ON DUPLICATE KEY UPDATE ';
621
        }else{
622
            $prefix = ',';
623
        }
624
625
        $context->appendSql("$prefix$expr",$prefix == 'ON DUPLICATE KEY UPDATE ');
626
        $context->appendParams($args);
627
628
    }
629
    public function setArgs($context, $values){
630
        $set = [];
631
        $params = [];