Skip to content

Instantly share code, notes, and snippets.

@mrkrstphr
Created January 15, 2014 20:23
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 mrkrstphr/8443835 to your computer and use it in GitHub Desktop.
Save mrkrstphr/8443835 to your computer and use it in GitHub Desktop.
Nulls
<?php
class MyClass {}
function foo(MyClass $obj = null) { echo "foo called\n"; }
function bar(MyClass $obj) { echo "bar called\n"; }
foo(null);
bar(null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment