Skip to content

Instantly share code, notes, and snippets.

@pmjones
Created June 2, 2015 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pmjones/3a3e167b444a41cb0c6d to your computer and use it in GitHub Desktop.
Save pmjones/3a3e167b444a41cb0c6d to your computer and use it in GitHub Desktop.
<?php
error_reporting(E_ALL|E_STRICT);
class Foo
{
public function zim()
{
}
}
class Bar extends Foo
{
public function zim($doom = null)
{
}
}
$bar = new Bar();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment