| 1234567891011121314151617181920 |
- <?php
- declare(strict_types=1);
- namespace Laminas\Stdlib\ArrayUtils;
- final class MergeReplaceKey implements MergeReplaceKeyInterface
- {
- public function __construct(protected mixed $data)
- {
- }
- /**
- * {@inheritDoc}
- */
- public function getData()
- {
- return $this->data;
- }
- }
|