Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. class cAbstract
  4. {
  5.     public function zrobCos()
  6.     {
  7.         $this->metodaChilda();
  8.     }
  9. }
  10.  
  11. class Child extends cAbstract
  12. {
  13.     public function start()
  14.     {
  15.         $this->zrobCos();
  16.     }
  17.    
  18.     protected function metodaChilda()
  19.     {
  20.         echo 'elo';
  21.     }
  22.    
  23. }
  24.  
  25. $obj = new Child();
  26. $obj->start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement