Home
last modified time | relevance | path

Searched refs:doubler (Results 1 – 2 of 2) sorted by relevance

/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/
H A DProphet.php32 private $doubler; variable in Prophecy\\Prophet
44 * @param null|Doubler $doubler
51 if (null === $doubler) {
52 $doubler = new Doubler;
53 $doubler->registerClassPatch(new ClassPatch\SplFileInfoPatch);
55 $doubler->registerClassPatch(new ClassPatch\ThrowablePatch);
60 $doubler->registerClassPatch(new ClassPatch\MagicCallPatch);
61 $doubler->registerClassPatch(new ClassPatch\KeywordPatch);
64 $this->doubler = $doubler;
79 new LazyDouble($this->doubler),
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/
H A DLazyDouble.php27 private $doubler; variable in Prophecy\\Doubler\\LazyDouble
36 * @param Doubler $doubler
38 public function __construct(Doubler $doubler) argument
40 $this->doubler = $doubler;
117 return $this->double = $this->doubler->double(
122 $this->double = $this->doubler->double($this->class, $this->interfaces);