Skip to content

Instantly share code, notes, and snippets.

@ckwalsh
Created April 11, 2014 20:06
Show Gist options
  • Save ckwalsh/10497367 to your computer and use it in GitHub Desktop.
Save ckwalsh/10497367 to your computer and use it in GitHub Desktop.
<?hh
namespace Foo;
class Bar {
function foobar(): this {
return $this;
}
}
$b = new Bar();
$b2 = $b->foobar();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment