Advertisement
Guest User

Untitled

a guest
Jul 24th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class parent {
  2.  
  3. __construct() {
  4.  
  5. I set stuff up
  6. such as file paths etc.
  7.  
  8. }
  9.  
  10. }
  11.  
  12. class grandparent extends parent {
  13.  
  14. __construct() {
  15.  
  16. I want to run the parents config, but override some stuf.
  17.  
  18. }
  19.  
  20. }
  21.  
  22. new grandparent extends parent();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement