Completed
Push — master ( 81f48e...d30a44 )
by Angus
03:06
created
application/models/Auth_Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 
73 73
 	/**
74 74
 	 * @param string $verificationCode
75
-	 * @return mixed
75
+	 * @return string
76 76
 	 */
77 77
 	public function verification_check(string $verificationCode) {
78 78
 		//user is trying to validate their email for signup, check if verification code is still valid/exists
Please login to merge, or discard this patch.
application/models/User_Options_Model.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	/**
74 74
 	 * Get user option, or default option if it does not exist.
75 75
 	 * @param string $option
76
-	 * @return mixed Returns option value as STRING, or FALSE if option does not exist.
76
+	 * @return string Returns option value as STRING, or FALSE if option does not exist.
77 77
 	 */
78 78
 	public function get(string $option) {
79 79
 		return $this->get_by_userid($option, (int) $this->User->id);
@@ -135,6 +135,9 @@  discard block
 block discarded – undo
135 135
 		return $success;
136 136
 	}
137 137
 
138
+	/**
139
+	 * @return string
140
+	 */
138 141
 	private function get_db(string $option, int $userID) {
139 142
 		//This function assumes we've already done some basic validation.
140 143
 		$query = $this->db->select('value_str, value_int')
Please login to merge, or discard this patch.
application/libraries/MY_DB_cache.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -245,7 +245,7 @@
 block discarded – undo
245 245
 	}
246 246
 
247 247
 	/**
248
-	 * @param $md5
248
+	 * @param string $md5
249 249
 	 *
250 250
 	 * @return array
251 251
 	 */
Please login to merge, or discard this patch.
application/models/Tracker/Tracker_Title_Model.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
 	 * @param string $site_url
111 111
 	 *
112
-	 * @return object|null
112
+	 * @return string
113 113
 	 */
114 114
 	public function getSiteDataFromURL(string $site_url) {
115 115
 		$query = $this->db->select('*')
Please login to merge, or discard this patch.