Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: student
  5.  * Date: 13.12.18
  6.  * Time: 15:32
  7.  */
  8.  
  9. namespace Model;
  10.  
  11. use Concept\Distinguishable;
  12.  
  13. class User extends Distinguishable
  14. {
  15.  
  16.     public $name;
  17.     public $surname;
  18.     public $email;
  19.     public $password;
  20.     public $password_confirmation;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement