X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FStubObject.php;h=2052c44842585489963f75eab4b906e567bf40cf;hp=1583dbf9f7619bdf1965d42a1d70f81dd061edd8;hb=de64366f58f0af7a02a417833c8e0605e4140fab;hpb=4d75fbf3571c765a3d84140cb77b45a86aab3184 diff --git a/includes/StubObject.php b/includes/StubObject.php index 1583dbf9f7..2052c44842 100644 --- a/includes/StubObject.php +++ b/includes/StubObject.php @@ -79,7 +79,7 @@ class StubObject { * @return bool True if $obj is not an instance of StubObject class. */ public static function isRealObject( $obj ) { - return is_object( $obj ) && !$obj instanceof StubObject; + return is_object( $obj ) && !$obj instanceof self; } /** @@ -91,7 +91,7 @@ class StubObject { * @return void */ public static function unstub( &$obj ) { - if ( $obj instanceof StubObject ) { + if ( $obj instanceof self ) { $obj = $obj->_unstub( 'unstub', 3 ); } } @@ -153,7 +153,7 @@ class StubObject { public function _unstub( $name = '_unstub', $level = 2 ) { static $recursionLevel = 0; - if ( !$GLOBALS[$this->global] instanceof StubObject ) { + if ( !$GLOBALS[$this->global] instanceof self ) { return $GLOBALS[$this->global]; // already unstubbed. }