__set() __set(string $key, mixed $val) Ignore setting the requested property. Parameters string $key The property. mixed $val The property's value.
__get() __get(string $key) : null Return null for any requested property. Parameters string $key The requested object property. Returns null — Null.
__isset() __isset(string $key) : boolean Property existence. Parameters string $key The requested object property. Returns boolean — False.
__unset() __unset(string $key) Ignore unsetting a property. Parameters string $key The requested object property.
__call() __call(string $method, array $args) Gracefully accept any method call and do nothing. Parameters string $method The method that was called. array $args The method's arguments.
__callStatic() __callStatic(string $method, array $args) Gracefully accept any static method call and do nothing. Parameters string $method The method that was called. array $args The method's arguments.