Completed
Push — master ( 964c78...5d0d19 )
by Henry
17:32
created
includes/Admin/View/Helper/Option.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -268,7 +268,7 @@
 block discarded – undo
268 268
 	 * @since 3.0.0
269 269
 	 *
270 270
 	 * @param string $table name of the table
271
-	 * @param array $excludeArray array of the exclude
271
+	 * @param integer[] $excludeArray array of the exclude
272 272
 	 *
273 273
 	 * @return array
274 274
 	 */
Please login to merge, or discard this patch.
includes/Mailer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
 	 * @param array $fromArray array of the sender
95 95
 	 * @param string $subject subject of the email
96 96
 	 * @param string|array $body body of the email
97
-	 * @param array $attachmentArray array of the attachments
97
+	 * @param string[] $attachmentArray array of the attachments
98 98
 	 */
99 99
 
100 100
 	public function init($toArray = [], $fromArray = [], $subject = null, $body = null, $attachmentArray = [])
Please login to merge, or discard this patch.
includes/Admin/View/GroupForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 	 *
24 24
 	 * @since 3.0.0
25 25
 	 *
26
-	 * @param int|bool $groupId identifier of the group
26
+	 * @param integer $groupId identifier of the group
27 27
 	 *
28 28
 	 * @return string
29 29
 	 */
Please login to merge, or discard this patch.
includes/Admin/View/UserForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 	 *
24 24
 	 * @since 3.0.0
25 25
 	 *
26
-	 * @param int|bool $userId identifier of the user
26
+	 * @param integer $userId identifier of the user
27 27
 	 *
28 28
 	 * @return string
29 29
 	 */
Please login to merge, or discard this patch.
includes/Db.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -219,7 +219,7 @@
 block discarded – undo
219 219
 	 * @since 2.2.0
220 220
 	 *
221 221
 	 * @param string $table name of the table
222
-	 * @param string|array $constraint constraint as needed
222
+	 * @param string $constraint constraint as needed
223 223
 	 * @param string $tableAlias alias of the table
224 224
 	 *
225 225
 	 * @return self
Please login to merge, or discard this patch.
includes/Filesystem/File.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 	 *
38 38
 	 * @param string $file name of the file
39 39
 	 *
40
-	 * @return string|bool
40
+	 * @return string|false
41 41
 	 */
42 42
 
43 43
 	public function readFile(string $file = null)
Please login to merge, or discard this patch.
includes/Head/Title.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 	 *
46 46
 	 * @param string $text
47 47
 	 *
48
-	 * @return string|bool
48
+	 * @return string|false
49 49
 	 */
50 50
 
51 51
 	public function render(string $text = null)
Please login to merge, or discard this patch.
modules/SocialSharer/SocialSharer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 	 *
37 37
 	 * @since 3.0.0
38 38
 	 *
39
-	 * @return string|bool
39
+	 * @return string|false
40 40
 	 */
41 41
 
42 42
 	public function contentFragmentEnd()
Please login to merge, or discard this patch.
includes/Language.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 	 *
27 27
 	 * @since 2.2.0
28 28
 	 *
29
-	 * @param string|array|bool $language detected language to process
29
+	 * @param null|string $language detected language to process
30 30
 	 */
31 31
 
32 32
 	public function init($language = 'en')
Please login to merge, or discard this patch.