CloneSet1072


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7230.982class_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
17312
plugins/authentication/openid/Auth/OpenID/SQLStore.php
27321
plugins/authentication/openid/Auth/OpenID/SQLStore.php
Clone Instance
1
Line Count
7
Source Line
312
Source File
plugins/authentication/openid/Auth/OpenID/SQLStore.php

    function create_nonce_table() {

        if (!$this->tableExists($this->nonces_table_name)) {
            $r=  $this->connection->query($this->sql['nonce_table']);
            return $this->resultToBool($r);
          }
        return TRUE;
      }


Clone Instance
2
Line Count
7
Source Line
321
Source File
plugins/authentication/openid/Auth/OpenID/SQLStore.php

    function create_assoc_table() {

        if (!$this->tableExists($this->associations_table_name)) {
            $r=  $this->connection->query($this->sql['assoc_table']);
            return $this->resultToBool($r);
          }
        return TRUE;
      }


Clone AbstractionParameter Count: 3Parameter Bindings

function [[#variable20fbe460]]() {
  if (!$this->tableExists($this-> [[#variable20fbe400]])) {
    $r=$this->connection->query($this->sql[ [[#variable20fbe3a0]]]);
    return $this->resultToBool($r);
  }
  return TRUE;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#20fbe460]]
create_assoc_table 
12[[#20fbe460]]
create_nonce_table 
21[[#20fbe400]]
associations_table_name 
22[[#20fbe400]]
nonces_table_name 
31[[#20fbe3a0]]
'assoc_table' 
32[[#20fbe3a0]]
'nonce_table'