Skip to content

Instantly share code, notes, and snippets.

@windbridges
Last active December 5, 2020 16:46
Show Gist options
  • Save windbridges/1f3ab322ab0c8909b684d767da10dfc5 to your computer and use it in GitHub Desktop.
Save windbridges/1f3ab322ab0c8909b684d767da10dfc5 to your computer and use it in GitHub Desktop.
Checks if function is also a generator
<?php
function isGenerator (callable $handler)
{
$r = new ReflectionFunction($handler);
return $r->isGenerator();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment