Skip to content

Instantly share code, notes, and snippets.

@hnw
Created December 8, 2014 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hnw/4e4afa80faf608d8cab9 to your computer and use it in GitHub Desktop.
Save hnw/4e4afa80faf608d8cab9 to your computer and use it in GitHub Desktop.
<?php
class Foo {
function __invoke() {
echo 'foo';
}
function bar(callable $function) {
echo 'bar';
}
}
$foo = new Foo();
$foo->bar($foo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment