Created
November 23, 2016 20:01
-
-
Save danielpataki/1faa95815f3e0dc32de9e8798087fd20 to your computer and use it in GitHub Desktop.
PHP 7.1.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getNumber(): int { | |
return 6; | |
} | |
// Returns an integer so all is well | |
function getNumber(): int { | |
return 'six'; | |
} | |
// Returns a string, will throw an error when called |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment