Skip to content

Instantly share code, notes, and snippets.

@kingpabel
Created November 1, 2015 20:22
Show Gist options
  • Save kingpabel/e8007d1bb002458116a5 to your computer and use it in GitHub Desktop.
Save kingpabel/e8007d1bb002458116a5 to your computer and use it in GitHub Desktop.
<?php
//right way
function foo(): array {
return [];
}
var_dump(foo());
//wrong way
function foo(): array {
return 'a';
}
var_dump(foo());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment