final class MergeReplaceKey in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKey.php \Zend\Stdlib\ArrayUtils\MergeReplaceKey
Hierarchy
- class \Zend\Stdlib\ArrayUtils\MergeReplaceKey implements MergeReplaceKeyInterface
Expanded class hierarchy of MergeReplaceKey
File
- vendor/
zendframework/ zend-stdlib/ src/ ArrayUtils/ MergeReplaceKey.php, line 12
Namespace
Zend\Stdlib\ArrayUtilsView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MergeReplaceKey:: |
protected | property | ||
MergeReplaceKey:: |
public | function |
Overrides MergeReplaceKeyInterface:: |
|
MergeReplaceKey:: |
public | function |