/
home
/
obinna
/
html
/
cravings
/
vendor
/
phpspec
/
prophecy
/
src
/
Prophecy
/
Doubler
/
Generator
/
Upload File
HOME
<?php namespace Prophecy\Doubler\Generator; /** * Tells whether a keyword refers to a class or to a built-in type for the * current version of php * * @deprecated in favour of Node\TypeNodeAbstract */ final class TypeHintReference { public function isBuiltInParamTypeHint($type) { switch ($type) { case 'self': case 'array': case 'callable': case 'bool': case 'float': case 'int': case 'string': case 'iterable': case 'object': return true; case 'mixed': return PHP_VERSION_ID >= 80000; default: return false; } } public function isBuiltInReturnTypeHint($type) { if ($type === 'void') { return true; } return $this->isBuiltInParamTypeHint($type); } }