Skip to content

Instantly share code, notes, and snippets.

@davedevelopment
Forked from pmjones/gist:3a3e167b444a41cb0c6d
Last active August 29, 2015 14:22
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 davedevelopment/3ab8d54aba958fc31075 to your computer and use it in GitHub Desktop.
Save davedevelopment/3ab8d54aba958fc31075 to your computer and use it in GitHub Desktop.
<?php
error_reporting(E_ALL|E_STRICT);
namespace Some\Vendor;
class Foo
{
public function zim($doom = null)
{
}
}
namespace My\App;
class Bar extends Foo
{
public function zim()
{
}
}
$bar = new Bar();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment