Supported Versions: PHP 5 >= 5.3.0, PHP 7, PHP 8
Replaces elements from passed arrays into the first array
<?php array_replace(array $array, array ...$replacements): array
<?php         $platformRepository = new PlatformRepository(array(), array(), $runtime);



        $expectations = array_map(function ($expectation) {

            return array_replace(array(null, array(), array()), (array) $expectation);

        }, $expectations);



        $libraries = array_map(