<?php
namespace ConcreteCoreUserEvent;
use SymfonyComponentEventDispatcherEvent as AbstractEvent;
use ConcreteCoreUserUser as ConcreteUserInfo;
class UserInfoWithPassword extends UserInfo {
protected $uPassword;
public function setUserPassword($uPassword) {
$this->uPassword = $uPassword;
}
public function getUserPassword() {
return $this->uPassword;
}
}