Supported Versions: PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8
Applies the callback to the elements of the given arrays
<?php array_map(?callable $callback, array $array, array ...$arrays): array
<?php     public function getHash(): string

    {

        $normalizedArguments = array_map(function ($argument) {

            return is_object($argument) ? spl_object_hash($argument) : $argument;

        }, $this->getArguments());



        $prefix = $this->getObjectName() . $this->getFunctionName();

        if (str_contains($prefix, '{closure}')) {