Code Duplication    Length = 3-3 lines in 2 locations

src/voku/db/DB.php 2 locations

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