CloneSet1107


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4220.988class_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14198
libraries/joomla/error/error.php
24213
libraries/joomla/error/error.php
Clone Instance
1
Line Count
4
Source Line
198
Source File
libraries/joomla/error/error.php

        /**
         * Wrapper method for the {@link raise()} method with predefined error level of E_WARNING and backtrace set to false.
         *
         * @param       string  $code   The application-internal error code for this error
         * @param       string  $msg    The error message, which may also be shown the user if need be.
         * @param       mixed   $info   Optional: Additional error information (usually only developer-relevant information that the user should never see, like a database DSN).
         * @return      object  $error  The configured JError object
         * @since       1.5
         */
        public static

                      function &raiseWarning($code, $msg, $info=  NULL) {

                $reference=  & JError::raise( E_WARNING ,$code, $msg, $info);
                return $reference;
              }


Clone Instance
2
Line Count
4
Source Line
213
Source File
libraries/joomla/error/error.php

        /**
         * Wrapper method for the {@link raise()} method with predefined error level of E_NOTICE and backtrace set to false.
         *
         * @param       string  $code   The application-internal error code for this error
         * @param       string  $msg    The error message, which may also be shown the user if need be.
         * @param       mixed   $info   Optional: Additional error information (usually only developer-relevant information that the user should never see, like a database DSN).
         * @return      object  $error  The configured JError object
         * @since       1.5
         */
        public static

                      function &raiseNotice($code, $msg, $info=  NULL) {

                $reference=  & JError::raise( E_NOTICE ,$code, $msg, $info);
                return $reference;
              }


Clone AbstractionParameter Count: 2Parameter Bindings

/**
         * Wrapper method for the {@link raise()} method with predefined error level of E_WARNING and backtrace set to false.
         *
         * @param       string  $code   The application-internal error code for this error
         * @param       string  $msg    The error message, which may also be shown the user if need be.
         * @param       mixed   $info   Optional: Additional error information (usually only developer-relevant information that the user should never see, like a database DSN).
         * @return      object  $error  The configured JError object
         * @since       1.5
         */
/**
         * Wrapper method for the {@link raise()} method with predefined error level of E_NOTICE and backtrace set to false.
         *
         * @param       string  $code   The application-internal error code for this error
         * @param       string  $msg    The error message, which may also be shown the user if need be.
         * @param       mixed   $info   Optional: Additional error information (usually only developer-relevant information that the user should never see, like a database DSN).
         * @return      object  $error  The configured JError object
         * @since       1.5
         */
public static

             function & [[#variable3c8eb020]]($code,$msg,$info=NULL) {
               $reference= &JError::raise( [[#variable3c8eb0e0]],$code,$msg,$info);
               return $reference;
             }
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#3c8eb020]]
raiseWarning 
12[[#3c8eb020]]
raiseNotice 
21[[#3c8eb0e0]]
E_WARNING 
22[[#3c8eb0e0]]
E_NOTICE