Completed
Push — add/rna-connection-in-place ( 2a3811...3337c9 )
by
unknown
133:59 queued 124:32
created
projects/packages/changelogger/lib/KeepAChangelogParser.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -89,6 +89,7 @@
 block discarded – undo
89 89
 	 *
90 90
 	 * @param string   $haystack String to split.
91 91
 	 * @param string[] ...$needles Strings to split on. Earliest match in $haystack wins.
92
+	 * @param string $needles
92 93
 	 * @return string[] Two elements: The part before $needles and the part after, both trimmed.
93 94
 	 */
94 95
 	private function split( $haystack, ...$needles ) {
Please login to merge, or discard this patch.
projects/packages/connection/src/class-secrets.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -43,6 +43,7 @@
 block discarded – undo
43 43
 	 * @param String       $action       The action name.
44 44
 	 * @param Integer|bool $user_id The user identifier. Defaults to `false`.
45 45
 	 * @param Integer      $exp          Expiration time in seconds.
46
+	 * @return string|boolean
46 47
 	 */
47 48
 	public function generate( $action, $user_id = false, $exp = 600 ) {
48 49
 		if ( false === $user_id ) {
Please login to merge, or discard this patch.
projects/packages/changelogger/src/Plugins/WordpressVersioning.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
 	 * Extract the index and count from a prerelease string.
139 139
 	 *
140 140
 	 * @param string|null $s String.
141
-	 * @return array Two elements: index and count.
141
+	 * @return integer[] Two elements: index and count.
142 142
 	 * @throws InvalidArgumentException If the string is invalid.
143 143
 	 */
144 144
 	private function parsePrerelease( $s ) {
Please login to merge, or discard this patch.