Skip to content

Instantly share code, notes, and snippets.

@KalleZ
Last active November 27, 2017 14:28
Show Gist options
  • Select an option

  • Save KalleZ/d5d2ffbb7603f06a528dbc088ffb801c to your computer and use it in GitHub Desktop.

Select an option

Save KalleZ/d5d2ffbb7603f06a528dbc088ffb801c to your computer and use it in GitHub Desktop.
<?php
class MyClass
{
private $myService;
public function someMethod()
{
$cb = function()
{
$this->myService->doTheStuff();
};
$cb->bindTo($this);
return($this->myService->methodUsingCallback($cb));
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment