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