Completed
Push — trunk ( e1b1e7...167c89 )
by Justin
17:41 queued 04:12
created
includes/helper-functions.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -317,8 +317,8 @@
 block discarded – undo
317 317
 	 * Reimplementation of DateTime::createFromFormat for PHP < 5.3. :(
318 318
 	 * Borrowed from http://stackoverflow.com/questions/5399075/php-datetimecreatefromformat-in-5-2
319 319
 	 *
320
-	 * @param $date_format
321
-	 * @param $date_value
320
+	 * @param string $date_format
321
+	 * @param string $date_value
322 322
 	 *
323 323
 	 * @return DateTime
324 324
 	 */
Please login to merge, or discard this patch.
includes/CMB2_Utils.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -547,7 +547,7 @@
 block discarded – undo
547 547
 	 * @since  2.2.3
548 548
 	 *
549 549
 	 * @param  mixed $value   Value to ensure is array.
550
-	 * @param  array $default Default array. Defaults to empty array.
550
+	 * @param  string[] $default Default array. Defaults to empty array.
551 551
 	 *
552 552
 	 * @return array          The array.
553 553
 	 */
Please login to merge, or discard this patch.
includes/types/CMB2_Type_Text_Datetime_Timestamp.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -39,6 +39,9 @@  discard block
 block discarded – undo
39 39
 		return $this->rendered( $date_input . "\n" . $time_input );
40 40
 	}
41 41
 
42
+	/**
43
+	 * @param boolean $has_good_value
44
+	 */
42 45
 	public function date_args( $args, $has_good_value ) {
43 46
 		$date_args = wp_parse_args( $args['datepicker'], array(
44 47
 			'class' => 'cmb2-text-small cmb2-datepicker',
@@ -54,6 +57,9 @@  discard block
 block discarded – undo
54 57
 		return $this->parse_picker_options( 'date', $date_args );
55 58
 	}
56 59
 
60
+	/**
61
+	 * @param boolean $has_good_value
62
+	 */
57 63
 	public function time_args( $args, $has_good_value ) {
58 64
 		$time_args = wp_parse_args( $args['timepicker'], array(
59 65
 			'class' => 'cmb2-timepicker text-time',
Please login to merge, or discard this patch.
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.