Skip to content

Instantly share code, notes, and snippets.

@alexanderschnitzler
Created January 14, 2013 20:13
Show Gist options
  • Save alexanderschnitzler/4532954 to your computer and use it in GitHub Desktop.
Save alexanderschnitzler/4532954 to your computer and use it in GitHub Desktop.
class Foo {
41public function bar() {
var_dump('non static');
}
static public function __callStatic($name, array $arguments) {
var_dump($name);
}
}
Foo::bar();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment