We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 938f1bc commit a8a9c77Copy full SHA for a8a9c77
1 file changed
src/Element.php
@@ -21,9 +21,7 @@ public function __construct($value = null) {
21
$parent_class = get_parent_class(get_called_class());
22
if ($parent_class && $parent_class !== 'Locker\XApi\Atom') {
23
$parent_instance = new $parent_class;
24
- $this->props = array_unique(
25
- array_merge($parent_instance->props, $this->props)
26
- );
+ $this->props = array_merge($parent_instance->props, $this->props);
27
$this->required_props = array_unique(
28
array_merge($parent_instance->required_props, $this->required_props)
29
);
0 commit comments