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