Skip to content

Instantly share code, notes, and snippets.

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