X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FStubObject.php;h=59238faa901c520cca8a62004837840be6455e1f;hb=9bb7dc358e8e31f3c395e4f33785718324d4b633;hp=8a1e75819017dd5f9164bc633f8ac905dc145d5f;hpb=7bb29a97ae51ce8c74599871f8e688e72aac2811;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/StubObject.php b/includes/StubObject.php index 8a1e758190..59238faa90 100644 --- a/includes/StubObject.php +++ b/includes/StubObject.php @@ -41,9 +41,9 @@ class StubObject { /** * Constructor. * - * @param $global String: name of the global variable. - * @param $class String: name of the class of the real object. - * @param $params Array: parameters to pass to contructor of the real + * @param string $global name of the global variable. + * @param string $class name of the class of the real object. + * @param array $params parameters to pass to constructor of the real * object. */ function __construct( $global = null, $class = null, $params = array() ) { @@ -53,14 +53,14 @@ class StubObject { } /** - * Returns a bool value whetever $obj is a stub object. Can be used to break + * Returns a bool value whenever $obj is a stub object. Can be used to break * a infinite loop when unstubbing an object. * * @param $obj Object to check. * @return Boolean: true if $obj is not an instance of StubObject class. */ static function isRealObject( $obj ) { - return is_object( $obj ) && !($obj instanceof StubObject); + return is_object( $obj ) && !$obj instanceof StubObject; } /** @@ -70,8 +70,8 @@ class StubObject { * This function will also call the function with the same name in the real * object. * - * @param $name String: name of the function called - * @param $args Array: arguments + * @param string $name name of the function called + * @param array $args arguments * @return mixed */ function _call( $name, $args ) { @@ -91,8 +91,8 @@ class StubObject { * Function called by PHP if no function with that name exists in this * object. * - * @param $name String: name of the function called - * @param $args Array: arguments + * @param string $name name of the function called + * @param array $args arguments * @return mixed */ function __call( $name, $args ) { @@ -105,15 +105,15 @@ class StubObject { * This is public, for the convenience of external callers wishing to access * properties, e.g. eval.php * - * @param $name String: name of the method called in this object. - * @param $level Integer: level to go in the stact trace to get the function + * @param string $name name of the method called in this object. + * @param $level Integer: level to go in the stack trace to get the function * who called this function. * @throws MWException */ function _unstub( $name = '_unstub', $level = 2 ) { static $recursionLevel = 0; - if ( !($GLOBALS[$this->mGlobal] instanceof StubObject) ) { + if ( !$GLOBALS[$this->mGlobal] instanceof StubObject ) { return $GLOBALS[$this->mGlobal]; // already unstubbed. } @@ -122,6 +122,7 @@ class StubObject { wfProfileIn( $fname ); $caller = wfGetCaller( $level ); if ( ++$recursionLevel > 2 ) { + wfProfileOut( $fname ); throw new MWException( "Unstub loop detected on call of \${$this->mGlobal}->$name from $caller\n" ); } wfDebug( "Unstubbing \${$this->mGlobal} on call of \${$this->mGlobal}::$name from $caller\n" );