Completed
Push — development ( 2fadcd...18958b )
by
unknown
03:13
created
core/Field/Association_Field.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -514,7 +514,7 @@
 block discarded – undo
514 514
 	 * @access public
515 515
 	 *
516 516
 	 * @param  array  $fields
517
-	 * @return array
517
+	 * @return string[]
518 518
 	 */
519 519
 	public function get_term_options_sql_select_clause( $fields ) {
520 520
 		return array( '`t`.`term_id` AS `ID`', '`t`.`name` AS `title`', '\'term\' as `type`', '`tt`.`taxonomy` AS `subtype`' );
Please login to merge, or discard this patch.
core/Provider/Container_Condition_Provider.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
 	 *
277 277
 	 * @param  array<string>                     $condition_types
278 278
 	 * @param  \Carbon_Fields\Container\Container $container
279
-	 * @return array<string>
279
+	 * @return string[]
280 280
 	 */
281 281
 	public function filter_post_meta_container_static_condition_types( $condition_types, $container_type, $container ) {
282 282
 		return array_merge(
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
 	 * @param  array<string>                      $condition_types
292 292
 	 * @param  string                             $container_type
293 293
 	 * @param  \Carbon_Fields\Container\Container $container
294
-	 * @return array<string>
294
+	 * @return string[]
295 295
 	 */
296 296
 	public function filter_post_meta_container_dynamic_condition_types( $condition_types, $container_type, $container ) {
297 297
 		return array_merge(
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
 	 * @param  array<string>                      $condition_types
307 307
 	 * @param  string                             $container_type
308 308
 	 * @param  \Carbon_Fields\Container\Container $container
309
-	 * @return array<string>
309
+	 * @return string[]
310 310
 	 */
311 311
 	public function filter_term_meta_container_static_condition_types( $condition_types, $container_type, $container ) {
312 312
 		return array_merge(
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
 	 * @param  array<string>                      $condition_types
322 322
 	 * @param  string                             $container_type
323 323
 	 * @param  \Carbon_Fields\Container\Container $container
324
-	 * @return array<string>
324
+	 * @return string[]
325 325
 	 */
326 326
 	public function filter_term_meta_container_dynamic_condition_types( $condition_types, $container_type, $container ) {
327 327
 		return array_merge(
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
 	 * @param  array<string>                      $condition_types
337 337
 	 * @param  string                             $container_type
338 338
 	 * @param  \Carbon_Fields\Container\Container $container
339
-	 * @return array<string>
339
+	 * @return string[]
340 340
 	 */
341 341
 	public function filter_user_meta_container_static_condition_types( $condition_types, $container_type, $container ) {
342 342
 		return array_merge(
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
 	 * @param  array<string>                      $condition_types
352 352
 	 * @param  string                             $container_type
353 353
 	 * @param  \Carbon_Fields\Container\Container $container
354
-	 * @return array<string>
354
+	 * @return string[]
355 355
 	 */
356 356
 	public function filter_user_meta_container_dynamic_condition_types( $condition_types, $container_type, $container ) {
357 357
 		return array_merge(
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
 	 * @param  array<string>                      $condition_types
367 367
 	 * @param  string                             $container_type
368 368
 	 * @param  \Carbon_Fields\Container\Container $container
369
-	 * @return array<string>
369
+	 * @return string[]
370 370
 	 */
371 371
 	public function filter_theme_options_container_static_condition_types( $condition_types, $container_type, $container ) {
372 372
 		return array_merge(
Please login to merge, or discard this patch.
core/REST_API/Decorator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 	 * Get Post Meta Container visibility settings
81 81
 	 *
82 82
 	 * @param \Carbon_Fields\Container\Post_Meta_Container $container
83
-	 * @return array
83
+	 * @return string[]
84 84
 	 */
85 85
 	public static function get_post_meta_container_settings( $container ) {
86 86
 		return $container->get_post_type_visibility();
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 	 * Get Term Meta Container visibility settings
91 91
 	 *
92 92
 	 * @param \Carbon_Fields\Container\Term_Meta_Container $container
93
-	 * @return array
93
+	 * @return string[]
94 94
 	 */
95 95
 	public static function get_term_meta_container_settings( $container ) {
96 96
 		return $container->get_taxonomy_visibility();
Please login to merge, or discard this patch.