CloneSet770


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
9430.969class_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1935
libraries/joomla/document/error/error.php
2936
libraries/joomla/document/json/json.php
3930
libraries/joomla/document/raw/raw.php
4936
libraries/joomla/document/xml/xml.php
Clone Instance
1
Line Count
9
Source Line
35
Source File
libraries/joomla/document/error/error.php

        /**
         * Class constructor
         *
         * @access protected
         * @param       string  $type           (either html or tex)
         * @param       array   $attributes Associative array of attributes
         */
        function __construct($options=  array()) {

                parent:: __construct($options);

                //set mime type
                $this->_mime = 'text/html';

                //set document type
                $this->_type = 'error';
              }


Clone Instance
2
Line Count
9
Source Line
36
Source File
libraries/joomla/document/json/json.php

        /**
         * Class constructor
         *
         * @access public
         * @param       array   $options Associative array of options
         */
        public

               function __construct($options=  array()) {

                parent:: __construct($options);

                //set mime type
                $this->_mime = 'application/json';

                //set document type
                $this->_type = 'json';
              }


Clone Instance
3
Line Count
9
Source Line
30
Source File
libraries/joomla/document/raw/raw.php

        /**
         * Class constructore
         *
         * @access protected
         * @param       array   $options Associative array of options
         */
        function __construct($options=  array()) {

                parent:: __construct($options);

                //set mime type
                $this->_mime = 'text/html';

                //set document type
                $this->_type = 'raw';
              }


Clone Instance
4
Line Count
9
Source Line
36
Source File
libraries/joomla/document/xml/xml.php

        /**
         * Class constructor
         *
         * @access public
         * @param       array   $options Associative array of options
         */
        public

               function __construct($options=  array()) {

                parent:: __construct($options);

                //set mime type
                $this->_mime = 'application/xml';

                //set document type
                $this->_type = 'xml';
              }


Clone AbstractionParameter Count: 3Parameter Bindings

 [[#variable4c5ea840]]

/**
         * Class constructore
         *
         * @access protected
         * @param       array   $options Associative array of options
         */
/**
         * Class constructor
         *
         * @access protected
         * @param       string  $type           (either html or tex)
         * @param       array   $attributes Associative array of attributes
         */
function __construct($options=array()) {
  parent:: __construct($options);
  //set mime type
  $this->_mime = [[#variable4c5ea7c0]];
  //set document type
  $this->_type = [[#variable4c5ea760]];
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#4c5ea840]]
/**
 * Class constructor
 *
 * @access public
 * @param       array   $options Associative array of options
 */
public 
12[[#4c5ea840]]
13[[#4c5ea840]]
/**
 * Class constructor
 *
 * @access public
 * @param       array   $options Associative array of options
 */
public 
14[[#4c5ea840]]
21[[#4c5ea7c0]]
'application/xml' 
22[[#4c5ea7c0]]
'text/html' 
23[[#4c5ea7c0]]
'application/json' 
24[[#4c5ea7c0]]
'text/html' 
31[[#4c5ea760]]
'xml' 
32[[#4c5ea760]]
'raw' 
33[[#4c5ea760]]
'json' 
34[[#4c5ea760]]
'error'