Completed
Push — trunk ( badecc...16f377 )
by Justin
13:50
created
includes/CMB2_Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
 	 *
172 172
 	 * @since  2.0.0
173 173
 	 * @param  string $property Metabox config property to retrieve
174
-	 * @param  mixed  $fallback Fallback value to set if no value found
174
+	 * @param  boolean|null  $fallback Fallback value to set if no value found
175 175
 	 * @return mixed            Metabox config property value or false
176 176
 	 */
177 177
 	public function prop( $property, $fallback = null ) {
Please login to merge, or discard this patch.
includes/CMB2_Field.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -751,7 +751,7 @@  discard block
 block discarded – undo
751 751
 	 *
752 752
 	 * @since  2.0.0
753 753
 	 * @param  string $format     Either date_format or time_format
754
-	 * @param  string $meta_value Optional meta value to check
754
+	 * @param  integer $meta_value Optional meta value to check
755 755
 	 * @return string             Formatted date
756 756
 	 */
757 757
 	public function get_timestamp_format( $format = 'date_format', $meta_value = 0 ) {
@@ -1032,7 +1032,7 @@  discard block
 block discarded – undo
1032 1032
 	 *
1033 1033
 	 * @since  2.0.0
1034 1034
 	 * @param  string $key Specific option to retrieve
1035
-	 * @return array        Array of options
1035
+	 * @return string        Array of options
1036 1036
 	 */
1037 1037
 	public function options( $key = '' ) {
1038 1038
 		if ( ! empty( $this->field_options ) ) {
Please login to merge, or discard this patch.
includes/CMB2_hookup.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
 	 *
485 485
 	 * @since  2.2.4
486 486
 	 * @param  array $classes Array of classes
487
-	 * @return array           Modified array of classes
487
+	 * @return string[]           Modified array of classes
488 488
 	 */
489 489
 	public function postbox_classes( $classes ) {
490 490
 		if ( $this->cmb->prop( 'closed' ) && ! in_array( 'closed', $classes ) ) {
@@ -505,7 +505,7 @@  discard block
 block discarded – undo
505 505
 	 *
506 506
 	 * @since  2.2.4
507 507
 	 * @param  array $classes Array of classes
508
-	 * @return array           Modified array of classes
508
+	 * @return string[]           Modified array of classes
509 509
 	 */
510 510
 	protected function alternate_context_postbox_classes( $classes ) {
511 511
 		$classes[] = 'context-box';
Please login to merge, or discard this patch.
includes/CMB2_Sanitize.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -433,6 +433,7 @@  discard block
 block discarded – undo
433 433
 	 * Gets the values for the `file` field type from the data being saved.
434 434
 	 *
435 435
 	 * @since  2.2.0
436
+	 * @param string $id_key
436 437
 	 */
437 438
 	public function _get_group_file_value_array( $id_key ) {
438 439
 		$alldata = $this->field->group->data_to_save;
@@ -460,6 +461,7 @@  discard block
 block discarded – undo
460 461
 	 * Peforms saving of `file` attachement's ID
461 462
 	 *
462 463
 	 * @since  1.1.0
464
+	 * @param string $file_id_key
463 465
 	 */
464 466
 	public function _save_file_id_value( $file_id_key ) {
465 467
 		$id_field = $this->_new_supporting_field( $file_id_key );
@@ -481,6 +483,7 @@  discard block
 block discarded – undo
481 483
 	 * Peforms saving of `text_datetime_timestamp_timezone` utc timestamp
482 484
 	 *
483 485
 	 * @since  2.2.0
486
+	 * @param string $utc_key
484 487
 	 */
485 488
 	public function _save_utc_value( $utc_key, $utc_stamp ) {
486 489
 		return $this->_new_supporting_field( $utc_key )->save_field( $utc_stamp );
Please login to merge, or discard this patch.
includes/CMB2_Types.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@
 block discarded – undo
239 239
 	 * @param  string $fieldtype         The type of field being rendered.
240 240
 	 * @param  string $render_class_name The default field type class to use. Defaults to null.
241 241
 	 * @param  array  $args              Optional arguments to pass to type class.
242
-	 * @param  mixed  $additional        Optional additional argument to pass to type class.
242
+	 * @param  string  $additional        Optional additional argument to pass to type class.
243 243
 	 * @return CMB2_Type_Base                    Type object.
244 244
 	 */
245 245
 	public function get_new_render_type( $fieldtype, $render_class_name = null, $args = array(), $additional = '' ) {
Please login to merge, or discard this patch.
includes/rest-api/CMB2_REST.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -208,6 +208,7 @@  discard block
 block discarded – undo
208 208
 	 * @param string|array $object_types Object(s) the field is being registered
209 209
 	 *                                   to, "post"|"term"|"comment" etc.
210 210
 	 * @param string       $object_types       Canonical object type for callbacks.
211
+	 * @param string $object_type
211 212
 	 *
212 213
 	 * @return void
213 214
 	 */
@@ -706,7 +707,7 @@  discard block
 block discarded – undo
706 707
 	 * Retrieve all CMB2_REST instances from the registry.
707 708
 	 *
708 709
 	 * @since  2.2.3
709
-	 * @return CMB2[] Array of all registered CMB2_REST instances.
710
+	 * @return CMB2_REST[] Array of all registered CMB2_REST instances.
710 711
 	 */
711 712
 	public static function get_all() {
712 713
 		return self::$boxes;
Please login to merge, or discard this patch.
includes/rest-api/CMB2_REST_Controller.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
 	 * @since  2.2.3
206 206
 	 *
207 207
 	 * @param  mixed $cb Callable function/method.
208
-	 * @return mixed     Results of output buffer after calling function/method.
208
+	 * @return string     Results of output buffer after calling function/method.
209 209
 	 */
210 210
 	public function get_cb_results( $cb ) {
211 211
 		$args = func_get_args();
@@ -221,7 +221,6 @@  discard block
 block discarded – undo
221 221
 	 *
222 222
 	 * @since 2.2.3
223 223
 	 *
224
-	 * @param  mixed           $item     WordPress representation of the item.
225 224
 	 * @param  WP_REST_Request $request  Request object.
226 225
 	 * @return WP_REST_Response $response
227 226
 	 */
Please login to merge, or discard this patch.
includes/types/CMB2_Type_Base.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	 * Stores the rendered field output.
59 59
 	 *
60 60
 	 * @since  2.2.2
61
-	 * @param  string|CMB2_Type_Base $rendered Rendered output.
61
+	 * @param  string $rendered Rendered output.
62 62
 	 * @return string|CMB2_Type_Base           Rendered output or this object.
63 63
 	 */
64 64
 	public function rendered( $rendered ) {
@@ -117,7 +117,6 @@  discard block
 block discarded – undo
117 117
 	/**
118 118
 	 * Fall back to CMB2_Types methods
119 119
 	 *
120
-	 * @param string $field
121 120
 	 * @throws Exception Throws an exception if the field is invalid.
122 121
 	 * @return mixed
123 122
 	 */
@@ -139,7 +138,7 @@  discard block
 block discarded – undo
139 138
 	 *
140 139
 	 * @param string $field
141 140
 	 * @throws Exception Throws an exception if the field is invalid.
142
-	 * @return mixed
141
+	 * @return CMB2_Field
143 142
 	 */
144 143
 	public function __get( $field ) {
145 144
 		switch ( $field ) {
Please login to merge, or discard this patch.
includes/types/CMB2_Type_Textarea_Code.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 	 * Handles outputting an 'textarea' element
17 17
 	 *
18 18
 	 * @since  1.1.0
19
-	 * @param  array $args Override arguments
20 19
 	 * @return string       Form textarea element
21 20
 	 */
22 21
 	public function render() {
Please login to merge, or discard this patch.