Skip to content

Instantly share code, notes, and snippets.

@jawngee
Created July 15, 2009 06:48
Show Gist options
  • Save jawngee/147534 to your computer and use it in GitHub Desktop.
Save jawngee/147534 to your computer and use it in GitHub Desktop.
<?
class DumbClass
{
/**
* Comment block
*/
public function thing($parameter,$another)
{
return false;
}
}
$method=new ReflectionMethod('DumbClass','thing');
echo $method->getDocComment();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment