Home
last modified time | relevance | path

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

/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/
H A DStatic.php68 public $returnTypeNullable = false; variable in PHPUnit_Framework_MockObject_Invocation_Static
85 $this->returnTypeNullable = true;
130 case 'string': return $this->returnTypeNullable ? null : '';
131 case 'float': return $this->returnTypeNullable ? null : 0.0;
132 case 'int': return $this->returnTypeNullable ? null : 0;
133 case 'bool': return $this->returnTypeNullable ? null : false;
134 case 'array': return $this->returnTypeNullable ? null : [];
148 if ($this->returnTypeNullable) {