Skip to content

Instantly share code, notes, and snippets.

@ThijsFeryn
Created July 14, 2016 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThijsFeryn/1cf76dff1df2c5380f59c3e1b123f1ce to your computer and use it in GitHub Desktop.
Save ThijsFeryn/1cf76dff1df2c5380f59c3e1b123f1ce to your computer and use it in GitHub Desktop.
The returned array cannot be converted into the desired string. A type error is thrown.
<?php
function double(int $argument):string {
return [$argument*2];
}
var_dump(double(3));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment