Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
robertpustulka committed Jan 23, 2015
1 parent b9db56d commit 9af8c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ORM/Marshaller.php
Expand Up @@ -372,7 +372,7 @@ public function merge(EntityInterface $entity, array $data, array $options = [])
$value = $converter->marshal($value);
$isObject = is_object($value);
if ((!$isObject && $original === $value) ||
($isObject && $original == $value)
($isObject && $original == $value)
) {
continue;
}
Expand Down

0 comments on commit 9af8c7a

Please sign in to comment.