Skip to content

Instantly share code, notes, and snippets.

@Huholoman
Created December 22, 2017 10:24
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 Huholoman/f782906e19937b536d083cbf58a388fd to your computer and use it in GitHub Desktop.
Save Huholoman/f782906e19937b536d083cbf58a388fd to your computer and use it in GitHub Desktop.
class SomeControl
{
public onSomeEvent = null;
private function onFormSuccess()
{
if(isCallable($this->onSomeEvent)) {
$this->onSomeEvent();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment