Completed
Push — add/e2e-plan-upgrade-flow ( 8205c5...5e3bc0 )
by Yaroslav
13:45
created
projects/packages/autoloader/src/CustomAutoloaderPlugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
 	/**
169 169
 	 * Checks to see whether or not the root package is the one that required the autoloader.
170 170
 	 *
171
-	 * @return bool
171
+	 * @return null|boolean
172 172
 	 */
173 173
 	private function isRequiredByRoot() {
174 174
 		$package  = $this->composer->getPackage();
Please login to merge, or discard this patch.
projects/packages/changelogger/lib/ChangeEntry.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
 	/**
166 166
 	 * Set the timestamp.
167 167
 	 *
168
-	 * @param DateTime|string $timestamp Timestamp to set.
168
+	 * @param string $timestamp Timestamp to set.
169 169
 	 * @returns $this
170 170
 	 * @throws InvalidArgumentException If an argument is invalid.
171 171
 	 */
Please login to merge, or discard this patch.
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/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.