Code Duplication    Length = 3-3 lines in 2 locations

src/voku/db/DB.php 2 locations

@@ 534-536 (lines=3) @@
531
    }
532
533
    static $PARSE_KEY_CACHE = null;
534
    if ($PARSE_KEY_CACHE === null) {
535
      $PARSE_KEY_CACHE = \md5(\uniqid((string)\mt_rand(), true));
536
    }
537
538
    $sql = \str_replace('?', $PARSE_KEY_CACHE, $sql);
539
@@ 822-824 (lines=3) @@
819
    }
820
821
    static $PARSE_KEY_CACHE = null;
822
    if ($PARSE_KEY_CACHE === null) {
823
      $PARSE_KEY_CACHE = \md5(\uniqid((string)\mt_rand(), true));
824
    }
825
826
    foreach ($params as $name => $value) {
827
      $nameTmp = $name;