Completed
Push — update/phpcs-carousel ( c20563...547c23 )
by
unknown
155:24 queued 145:22
created
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.
projects/plugins/jetpack/modules/carousel/jetpack-carousel.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -567,6 +567,9 @@  discard block
 block discarded – undo
567 567
 		return $attr;
568 568
 	}
569 569
 
570
+	/**
571
+	 * @param string $html
572
+	 */
570 573
 	function add_data_to_container( $html ) {
571 574
 		global $post;
572 575
 		if (
@@ -870,6 +873,9 @@  discard block
 block discarded – undo
870 873
 		return ( 1 == $value ) ? 1 : 0;
871 874
 	}
872 875
 
876
+	/**
877
+	 * @param string $name
878
+	 */
873 879
 	function settings_checkbox( $name, $label_text, $extra_text = '', $default_to_checked = true ) {
874 880
 		if ( empty( $name ) ) {
875 881
 			return;
@@ -885,6 +891,9 @@  discard block
 block discarded – undo
885 891
 		echo '</fieldset>';
886 892
 	}
887 893
 
894
+	/**
895
+	 * @param string $name
896
+	 */
888 897
 	function settings_select( $name, $values, $extra_text = '' ) {
889 898
 		if ( empty( $name ) || ! is_array( $values ) || empty( $values ) ) {
890 899
 			return;
Please login to merge, or discard this patch.