for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Marcosh\PhpTypeChecker\TypeHint;
use Roave\BetterReflection\Reflection\ReflectionFunction;
use Roave\BetterReflection\Reflection\ReflectionMethod;
final class InputTypeHint
{
public static function method(ReflectionMethod $method): \Iterator
foreach ($method->getParameters() as $parameter) {
yield from MethodParamTypeHint::param($parameter);
}
public static function function(ReflectionFunction $function): \Iterator
foreach ($function->getParameters() as $parameter) {
yield from FunctionParamTypeHint::param($parameter);