Skip to content

Commit bdf96a6

Browse files
authored
Eliminate passing version into load callback
1 parent 7ae4e44 commit bdf96a6

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

plugins/speculation-rules/load.php

+4-6
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,11 @@ static function ( string $global_var_name, string $version, Closure $load ) {
3232
if ( ! isset( $GLOBALS[ $global_var_name ] ) ) {
3333
$bootstrap = static function () use ( $global_var_name ) {
3434
if (
35-
isset( $GLOBALS[ $global_var_name ]['load'], $GLOBALS[ $global_var_name ]['version'] )
35+
isset( $GLOBALS[ $global_var_name ]['load'] )
3636
&&
3737
$GLOBALS[ $global_var_name ]['load'] instanceof Closure
38-
&&
39-
is_string( $GLOBALS[ $global_var_name ]['version'] )
4038
) {
41-
call_user_func( $GLOBALS[ $global_var_name ]['load'], $GLOBALS[ $global_var_name ]['version'] );
39+
call_user_func( $GLOBALS[ $global_var_name ]['load'] );
4240
unset( $GLOBALS[ $global_var_name ] );
4341
}
4442
};
@@ -70,14 +68,14 @@ static function ( string $global_var_name, string $version, Closure $load ) {
7068
)(
7169
'plsr_pending_plugin_info',
7270
'1.2.1',
73-
static function ( string $version ) {
71+
static function () {
7472

7573
// Define the constant.
7674
if ( defined( 'SPECULATION_RULES_VERSION' ) ) {
7775
return;
7876
}
7977

80-
define( 'SPECULATION_RULES_VERSION', $version );
78+
define( 'SPECULATION_RULES_VERSION', '1.2.1' );
8179
define( 'SPECULATION_RULES_MAIN_FILE', plugin_basename( __FILE__ ) );
8280

8381
require_once __DIR__ . '/class-plsr-url-pattern-prefixer.php';

0 commit comments

Comments
 (0)