### Code snippet that reproduces the problem ```php /** * @template TE * @template TR * * @param TE $elt * @param TR ...$elts * * @return TE|TR */ function collect($elt, ...$elts) { $ret = $elt; foreach ($elts as $item) { if (rand(0, 1)) { $ret = $item; } } return $ret; } echo collect("a"); ``` https://phpstan.org/r/07be4916-5e39-4da2-a566-8c9c1922ea89 ### Expected output No issue
Code snippet that reproduces the problem
https://phpstan.org/r/07be4916-5e39-4da2-a566-8c9c1922ea89
Expected output
No issue