Skip to content

Instantly share code, notes, and snippets.

@ThijsFeryn
Created July 14, 2016 14:35
Show Gist options
  • Save ThijsFeryn/6cce1f0471ce50edb2c3d1c069b2b6ab to your computer and use it in GitHub Desktop.
Save ThijsFeryn/6cce1f0471ce50edb2c3d1c069b2b6ab to your computer and use it in GitHub Desktop.
A type error is thrown because an array cannot be turned into an integer
<?php
function double(int $argument):int {
return $argument*2;
}
var_dump(double([]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment