Last Updated: February 25, 2016
·
313
· lccro

Generic NullObject for PHP

It ignores every method call and property access:

class NullObject {
  public function __call($method, $args) { return $this; }
  public function __get($name) { return $this; }
}