Advertisement
Guest User

Untitled

a guest
Oct 6th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Model;
  4.  
  5. class LogInModel{
  6. private $user;
  7. private $password;
  8.  
  9. public function __construct(){
  10. $this->user = "Admin101";
  11. $this->password = "pass101";
  12. }
  13.  
  14. //...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement