Completed
Push — master ( 4e146b...a6625c )
by Henry
08:17
created
includes/Mailer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
 	 * @param array $fromArray array of the sender
107 107
 	 * @param string $subject subject of the email
108 108
 	 * @param string|array $body body of the email
109
-	 * @param array|null $attachmentArray array of the attachments
109
+	 * @param string[] $attachmentArray array of the attachments
110 110
 	 */
111 111
 
112 112
 	public function init(array $toArray = [], array $fromArray = [], string $subject = null, $body = null, ?array $attachmentArray = []) : void
Please login to merge, or discard this patch.
includes/Db.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 	 * @param string $table name of the table
215 215
 	 * @param string $connection which connection to use
216 216
 	 *
217
-	 * @return self
217
+	 * @return null|string
218 218
 	 */
219 219
 
220 220
 	public static function forTablePrefix(string $table = null, string $connection = self::DEFAULT_CONNECTION) : self
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
 	 * @since 2.2.0
229 229
 	 *
230 230
 	 * @param string $table name of the table
231
-	 * @param string|array $constraint constraint as needed
231
+	 * @param string $constraint constraint as needed
232 232
 	 * @param string $tableAlias alias of the table
233 233
 	 *
234 234
 	 * @return self
Please login to merge, or discard this patch.