Skip to content

Instantly share code, notes, and snippets.

@alexanderschnitzler
Created January 14, 2013 20:14
Show Gist options
  • Save alexanderschnitzler/4532970 to your computer and use it in GitHub Desktop.
Save alexanderschnitzler/4532970 to your computer and use it in GitHub Desktop.
<?php
class Foo {
public 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