Guest User

Untitled

a guest
Jan 18th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // a new event
  2. $signup = new event;
  3. $signup->username = 'freddy';
  4. $signup->password = 'queen';
  5. $signup->ip_address = '127.0.0.1';
  6.  
  7. // Attach classes to observer/listen for a login event
  8. $signup->attach( new signupemailer() );
  9. $signup->attach( new logger() );
  10. $signup->attach( new checkUser, 1 );
Add Comment
Please, Sign In to add comment