Guest User

Untitled

a guest
Nov 27th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <?php
  2.  
  3. class Users extends Vmodel {
  4.  
  5. function __construct() {
  6.  
  7. $this->username = Vtype::string()->min(3)->max(20);
  8. $this->password = Vtype::string()->min(3)->filter('sha1');
  9. }
  10. }
Add Comment
Please, Sign In to add comment