X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FStubObject.php;h=5208b8f1fafee04e5240d57f77040dcdc239e48e;hb=91a920fd85c34e64f47140ed82f2ac0913ed8033;hp=211afda671c14f3ad99f3bda4dad17f95d00312a;hpb=1fc267206c21a2ad44c7bb6a19ea1788cc621b17;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/StubObject.php b/includes/StubObject.php index 211afda671..5208b8f1fa 100644 --- a/includes/StubObject.php +++ b/includes/StubObject.php @@ -48,19 +48,25 @@ class StubObject { /** @var null|string */ protected $class; + /** @var null|callable */ + protected $factory; + /** @var array */ protected $params; /** - * Constructor. - * * @param string $global Name of the global variable. - * @param string $class Name of the class of the real object. + * @param string|callable $class Name of the class of the real object + * or a factory function to call * @param array $params Parameters to pass to constructor of the real object. */ public function __construct( $global = null, $class = null, $params = [] ) { $this->global = $global; - $this->class = $class; + if ( is_callable( $class ) ) { + $this->factory = $class; + } else { + $this->class = $class; + } $this->params = $params; } @@ -110,8 +116,10 @@ class StubObject { * @return object */ public function _newObject() { - return ObjectFactory::getObjectFromSpec( [ - 'class' => $this->class, + $params = $this->factory + ? [ 'factory' => $this->factory ] + : [ 'class' => $this->class ]; + return ObjectFactory::getObjectFromSpec( $params + [ 'args' => $this->params, 'closure_expansion' => false, ] ); @@ -149,7 +157,6 @@ class StubObject { } if ( get_class( $GLOBALS[$this->global] ) != $this->class ) { - $fname = __METHOD__ . '-' . $this->global; $caller = wfGetCaller( $level ); if ( ++$recursionLevel > 2 ) { throw new MWException( "Unstub loop detected on call of "