Guest User

Untitled

a guest
May 28th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. <?php
  2.  
  3. class NullObject {
  4.  
  5. function __get($name){
  6. return null;
  7. }
  8.  
  9. function __call($name, $arguments){
  10. return new NullObject();
  11. }
  12.  
  13. }
  14.  
  15. ?>
Add Comment
Please, Sign In to add comment