Skip to content

Instantly share code, notes, and snippets.

@chadmandoo
Created December 23, 2014 23:39
Show Gist options
  • Save chadmandoo/df30587b0e6891ef9ade to your computer and use it in GitHub Desktop.
Save chadmandoo/df30587b0e6891ef9ade to your computer and use it in GitHub Desktop.
<?php
function fun1(Callable $func)
{
$func();
return "This function is ";
}
class Sample
{
public function __invoke()
{
echo "Callable ";
}
}
$obj = new Sample();
echo fun1($obj);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment