CloneSet391


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7530.961statement_sequence[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1795
libraries/joomla/database/query.php
27109
libraries/joomla/database/query.php
37193
libraries/joomla/database/query.php
47207
libraries/joomla/database/query.php
57221
libraries/joomla/database/query.php
Clone Instance
1
Line Count
7
Source Line
95
Source File
libraries/joomla/database/query.php

                if (is_null($this->_select)) {
                        $this->_select = new JQueryElement('SELECT', $columns);
                      }
                else   {
                        $this->_select->append($columns);
                      }
                return $this;


Clone Instance
2
Line Count
7
Source Line
109
Source File
libraries/joomla/database/query.php

                if (is_null($this->_from)) {
                        $this->_from = new JQueryElement('FROM', $tables);
                      }
                else   {
                        $this->_from->append($tables);
                      }
                return $this;


Clone Instance
3
Line Count
7
Source Line
193
Source File
libraries/joomla/database/query.php

                if (is_null($this->_group)) {
                        $this->_group = new JQueryElement('GROUP BY', $columns);
                      }
                else   {
                        $this->_group->append($columns);
                      }
                return $this;


Clone Instance
4
Line Count
7
Source Line
207
Source File
libraries/joomla/database/query.php

                if (is_null($this->_having)) {
                        $this->_having = new JQueryElement('HAVING', $columns);
                      }
                else   {
                        $this->_having->append($columns);
                      }
                return $this;


Clone Instance
5
Line Count
7
Source Line
221
Source File
libraries/joomla/database/query.php

                if (is_null($this->_order)) {
                        $this->_order = new JQueryElement('ORDER BY', $columns);
                      }
                else   {
                        $this->_order->append($columns);
                      }
                return $this;


Clone AbstractionParameter Count: 3Parameter Bindings

if (is_null($this-> [[#variable524a92e0]])) {
  $this-> [[#variable524a92e0]]=new JQueryElement( [[#variable524a9280]], [[#variable524a9120]]);
}
else {
  $this-> [[#variable524a92e0]]->append( [[#variable524a9120]]);
}
return $this;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#524a92e0]]
_select 
12[[#524a92e0]]
_from 
13[[#524a92e0]]
_group 
14[[#524a92e0]]
_having 
15[[#524a92e0]]
_order 
21[[#524a9280]]
'SELECT' 
22[[#524a9280]]
'FROM' 
23[[#524a9280]]
'GROUP BY' 
24[[#524a9280]]
'HAVING' 
25[[#524a9280]]
'ORDER BY' 
31[[#524a9120]]
$columns 
32[[#524a9120]]
$tables 
33[[#524a9120]]
$columns 
34[[#524a9120]]
$columns 
35[[#524a9120]]
$columns