Skip to content
Snippets Groups Projects
Unverified Commit ba28c93e authored by Lee Rowlands's avatar Lee Rowlands
Browse files

Issue #3174022 by andypost, alexpott: call_user_func_array() and named arguments in PHP 8

parent eaf33de1
No related branches found
No related tags found
7 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!1012Issue #3226887: Hreflang on non-canonical content pages,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10,!596Issue #3046532: deleting an entity reference field, used in a contextual view, makes the whole site unrecoverable,!496Issue #2463967: Use .user.ini file for PHP settings,!144Issue #2666286: Clean up menu_ui to conform to Drupal coding standards,!16Draft: Resolve #2081585 "History storage"
......@@ -97,7 +97,8 @@ public function doTrustedCallback(callable $callback, array $args, $message, $er
}
}
return call_user_func_array($callback, $args);
// @TODO Allow named arguments in https://www.drupal.org/node/3174150
return call_user_func_array($callback, array_values($args));
}
}
......@@ -49,7 +49,7 @@ protected function setUp(): void {
*/
public function testBlocks() {
foreach ($this->getBlockTests() as $test) {
call_user_func_array([$this, 'doTestBlocks'], $test);
call_user_func_array([$this, 'doTestBlocks'], array_values($test));
}
}
......
......@@ -955,7 +955,7 @@ private static function getModulesToEnable($class) {
// Modules have been collected in reverse class hierarchy order; modules
// defined by base classes should be sorted first. Then, merge the results
// together.
$modules = array_reverse($modules);
$modules = array_values(array_reverse($modules));
return call_user_func_array('array_merge_recursive', $modules);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment