Skip to content

Commit c448ed8

Browse files
committed
Replace non-empty-string with string
1 parent 057bcb6 commit c448ed8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wp-includes/interactivity-api/class-wp-interactivity-api.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ final class WP_Interactivity_API {
8989
* Set of script modules that can be loaded after client-side navigation.
9090
*
9191
* @since 6.9.0
92-
* @var array<non-empty-string, true>
92+
* @var array<string, true>
9393
*/
9494
private $script_modules_that_can_load_on_client_navigation = array();
9595

@@ -425,7 +425,7 @@ public function add_load_on_client_navigation_attribute_to_script_modules( $attr
425425
*
426426
* @since 6.9.0
427427
*
428-
* @param non-empty-string $script_module_id The script module identifier.
428+
* @param string $script_module_id The script module identifier.
429429
*/
430430
public function add_client_navigation_support_to_script_module( string $script_module_id ) {
431431
$this->script_modules_that_can_load_on_client_navigation[ $script_module_id ] = true;

0 commit comments

Comments
 (0)