MergeReplaceKey.php 314 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace Laminas\Stdlib\ArrayUtils;
  4. final class MergeReplaceKey implements MergeReplaceKeyInterface
  5. {
  6. public function __construct(protected mixed $data)
  7. {
  8. }
  9. /**
  10. * {@inheritDoc}
  11. */
  12. public function getData()
  13. {
  14. return $this->data;
  15. }
  16. }