Completed
Push — master ( e9cd30...c2303d )
by Henry
05:05
created
includes/Admin/View/Helper/Panel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -508,7 +508,7 @@
 block discarded – undo
508 508
 	 *
509 509
 	 * @since 4.0.0
510 510
 	 *
511
-	 * @return string|null
511
+	 * @return Html\Element|null
512 512
 	 */
513 513
 
514 514
 	protected function _renderNotification() : ?string
Please login to merge, or discard this patch.
includes/Client/ClientAbstract.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 	 *
66 66
 	 * @since 2.4.0
67 67
 	 *
68
-	 * @param array $setupArray array of client setup
68
+	 * @param string[] $setupArray array of client setup
69 69
 	 * @param string $type type of the client
70 70
 	 */
71 71
 
Please login to merge, or discard this patch.
modules/DirectoryLister/DirectoryLister.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 * @param string $directory
70 70
 	 * @param array $optionArray
71 71
 	 *
72
-	 * @return string|null
72
+	 * @return Html\Element|null
73 73
 	 */
74 74
 
75 75
 	public function render(string $directory = null, array $optionArray = []) : ?string
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 	 * @param string $parentDirectory
139 139
 	 * @param array $optionArray
140 140
 	 *
141
-	 * @return string|null
141
+	 * @return Html\Element
142 142
 	 */
143 143
 
144 144
 	protected function _renderParent(string $rootDirectory = null, string $parentDirectory = null, array $optionArray = []) : ?string
Please login to merge, or discard this patch.
modules/SocialSharer/SocialSharer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 	 *
37 37
 	 * @since 3.0.0
38 38
 	 *
39
-	 * @return string|null
39
+	 * @return Html\Element|null
40 40
 	 */
41 41
 
42 42
 	public function articleFragmentEnd() : ?string
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 	 *
73 73
 	 * @param string $url
74 74
 	 *
75
-	 * @return string|null
75
+	 * @return Html\Element|null
76 76
 	 */
77 77
 
78 78
 	public function render(string $url = null) : ?string
Please login to merge, or discard this patch.
modules/Gallery/Gallery.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
 	 * @param string $directory
93 93
 	 * @param array $optionArray
94 94
 	 *
95
-	 * @return string|null
95
+	 * @return Html\Element|null
96 96
 	 */
97 97
 
98 98
 	public function render(string $directory = null, array $optionArray = []) : ?string
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
@@ -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.