for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yiisoft\Arrays\Modifier;
/**
* Reverse arrays order
*/
class ReverseBlockMerge implements ModifierInterface
{
public function apply(array $data, string $key): array
return $data;
}