Home
last modified time | relevance | path

Searched refs:isNullable (Results 1 – 3 of 3) sorted by relevance

/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
H A DArgumentNode.php27 private $isNullable = false; variable in Prophecy\\Doubler\\Generator\\Node\\ArgumentNode
93 public function isNullable() function in Prophecy\\Doubler\\Generator\\Node\\ArgumentNode
95 return $this->isNullable;
98 public function setAsNullable($isNullable = true) argument
100 $this->isNullable = $isNullable;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassMirror.php192 $node->setAsNullable($this->isNullable($parameter));
207 return $parameter->isOptional() || $this->isNullable($parameter);
245 private function isNullable(ReflectionParameter $parameter) function in Prophecy\\Doubler\\Generator\\ClassMirror
H A DClassCodeGenerator.php109 $php .= $argument->isNullable() ? '?' : '';