Skip to content

Commit d289589

Browse files
committed
[SerializedEntity:equal] Fixes comparison
1 parent db471eb commit d289589

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/DataModel/SerializedEntity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public function getSerialization() {
8282
* @see Comparable::equals
8383
*/
8484
public function equals( $target ) {
85-
$target instanceof SerializedEntity && $this->serialization === $target->serialization;
85+
$target instanceof SerializedEntity && $this->serialization == $target->serialization;
8686
}
8787

8888
/**

0 commit comments

Comments
 (0)