Advertisement
freeman701

Admin Class

Dec 4th, 2021
1,152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Vendor\App;
  4.  
  5. class Admin extends User
  6. {
  7.     public function __construct($data)
  8.     {
  9.         parent::__construct($data);
  10.         $this->email = 'whaaaaaaat!';
  11.         $this->password = 'hoooooooow didnt work here!';
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement