You are here

final class MergeReplaceKey in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKey.php \Zend\Stdlib\ArrayUtils\MergeReplaceKey

Hierarchy

Expanded class hierarchy of MergeReplaceKey

File

vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKey.php, line 12

Namespace

Zend\Stdlib\ArrayUtils
View source
final class MergeReplaceKey implements MergeReplaceKeyInterface {

  /**
   * @var mixed
   */
  protected $data;

  /**
   * @param mixed $data
   */
  public function __construct($data) {
    $this->data = $data;
  }

  /**
   * {@inheritDoc}
   */
  public function getData() {
    return $this->data;
  }

}

Members