diff --git a/core/lib/Drupal/Core/Field/FieldItemList.php b/core/lib/Drupal/Core/Field/FieldItemList.php index c1d3b70edb99745777e53611067eaf9e154c9680..08b55608e4f9863010ef0eed690da0e38f4e00a5 100644 --- a/core/lib/Drupal/Core/Field/FieldItemList.php +++ b/core/lib/Drupal/Core/Field/FieldItemList.php @@ -220,19 +220,14 @@ public function deleteRevision() { * * @param string $method * The name of the method to be invoked. + * @param mixed ...$args + * Any arguments to be forwarded to the invoked method. * * @return array * An array of results keyed by delta. */ - protected function delegateMethod($method) { - $result = []; - $args = array_slice(func_get_args(), 1); - foreach ($this->list as $delta => $item) { - // call_user_func_array() is way slower than a direct call so we avoid - // using it if have no parameters. - $result[$delta] = $args ? call_user_func_array([$item, $method], $args) : $item->{$method}(); - } - return $result; + protected function delegateMethod($method, ...$args) { + return array_map(fn($item) => $item->{$method}(...$args), $this->list); } /**