Home
last modified time | relevance | path

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

/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassCodeGenerator.php25 private $typeHintReference; variable in Prophecy\\Doubler\\Generator\\ClassCodeGenerator
27 public function __construct(TypeHintReference $typeHintReference = null) argument
29 $this->typeHintReference = $typeHintReference ?: new TypeHintReference();
104 $typeHintReference = $this->typeHintReference;
105 return array_map(function (Node\ArgumentNode $argument) use ($typeHintReference) {
113 $php .= $typeHintReference->isBuiltInParamTypeHint($hint) ? $hint : '\\'.$hint;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
H A DMethodNode.php40 private $typeHintReference; variable in Prophecy\\Doubler\\Generator\\Node\\MethodNode
46 public function __construct($name, $code = null, TypeHintReference $typeHintReference = null) argument
50 $this->typeHintReference = $typeHintReference ?: new TypeHintReference();
135 $this->returnType = $this->typeHintReference->isBuiltInReturnTypeHint($type) ?