54c244382ced112ec9b68a392df89e6b55d21ce0
[GitHub/WoltLab/WCF.git] /
1 <?php
2
3 /**
4 * @see https://github.com/laminas/laminas-stdlib for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-stdlib/blob/master/COPYRIGHT.md
6 * @license https://github.com/laminas/laminas-stdlib/blob/master/LICENSE.md New BSD License
7 */
8
9 namespace Laminas\Stdlib\ArrayUtils;
10
11 /**
12 * Marker interface: can be used to replace keys completely in {@see ArrayUtils::merge()} operations
13 */
14 interface MergeReplaceKeyInterface
15 {
16 /**
17 * @return mixed
18 */
19 public function getData();
20 }