Skip to content

Instantly share code, notes, and snippets.

@dseguy
Created January 23, 2015 13:46
Show Gist options
  • Save dseguy/105ca1356bc5d850e571 to your computer and use it in GitHub Desktop.
Save dseguy/105ca1356bc5d850e571 to your computer and use it in GitHub Desktop.
<?php
class x extends y {
function y (parent $y) {
var_dump($y);
}
}
class y {}
$y = new y();
$x = new x();
$x->y($y);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment