Skip to content

Instantly share code, notes, and snippets.

@BenGriffiths
Last active August 29, 2015 13:57
Show Gist options
  • Save BenGriffiths/9711485 to your computer and use it in GitHub Desktop.
Save BenGriffiths/9711485 to your computer and use it in GitHub Desktop.
Hack - Nullable Example
<?hh
function check_not_null(?int $x): int
{
if ($x === null)
{
return -1;
}
else
{
return $x;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment