Home
last modified time | relevance | path

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

/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassCodeGenerator.php86 if ($method->hasReturnType()) {
94 return $method->hasReturnType() && $method->getReturnType() !== 'void'
H A DClassMirror.php146 if (version_compare(PHP_VERSION, '7.0', '>=') && $method->hasReturnType()) {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
H A DMethodNode.php112 public function hasReturnType() function in Prophecy\\Doubler\\Generator\\Node\\MethodNode
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DGenerator.php1006 if ($this->hasReturnType($method)) {
1270 private function hasReturnType(ReflectionMethod $method) function in PHPUnit_Framework_MockObject_Generator
1272 return method_exists(ReflectionMethod::class, 'hasReturnType') && $method->hasReturnType();
1284 && $method->hasReturnType()
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prophecy/
H A DMethodProphecy.php73 … if (version_compare(PHP_VERSION, '7.0', '>=') && true === $reflectedMethod->hasReturnType()) {