Skip to content

Instantly share code, notes, and snippets.

@atrakeur
Created December 5, 2015 20:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atrakeur/f3f0a556ce4f0a58be77 to your computer and use it in GitHub Desktop.
Save atrakeur/f3f0a556ce4f0a58be77 to your computer and use it in GitHub Desktop.
PHP 7 example of a static typed function
<?php
function multiply(int a, int b) : float {
return a * b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment