Completed
Push — master ( a7b0c2...fe24f6 )
by Wanderson
02:20
created
app/model/Win/Authentication/User.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -139,6 +139,9 @@
 block discarded – undo
139 139
 		$this->confirmEmail = $confirmEmail;
140 140
 	}
141 141
 
142
+	/**
143
+	 * @param string $password
144
+	 */
142 145
 	public function setPassword($password, $confirmPassword = null) {
143 146
 		$this->password = $password;
144 147
 		$this->confirmPassword = $confirmPassword;
Please login to merge, or discard this patch.
app/model/Win/Authentication/UserDAO.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 
110 110
 	/**
111 111
 	 * Retorna true se já existe este email no sistema 
112
-	 * @return boolean
112
+	 * @return integer
113 113
 	 */
114 114
 	public function emailIsUsed() {
115 115
 		return $this->numRows(['email = ?' => $this->obj->getEmail(), 'person_id <> ?' => $this->obj->id]);
Please login to merge, or discard this patch.
app/model/Win/Calendar/Date.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
 		return (boolean) $this->year == 0;
42 42
 	}
43 43
 
44
+	/**
45
+	 * @return string
46
+	 */
44 47
 	public function getMonthName() {
45 48
 		return self::$monthNames[(int) $this->month];
46 49
 	}
Please login to merge, or discard this patch.