Skip to content

Instantly share code, notes, and snippets.

@kamrankr
Created March 21, 2016 06:45
Show Gist options
  • Save kamrankr/227987904c4f55458b06 to your computer and use it in GitHub Desktop.
Save kamrankr/227987904c4f55458b06 to your computer and use it in GitHub Desktop.
<?php
function sum($a, $b): float {
return $a + $b;
}
// Note that a float will be returned.
var_dump(sum(1, 2));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment