refactor: remove unneeded parentheses

This commit is contained in:
kenjis 2022-01-02 08:55:10 +09:00
parent b71c1ef8eb
commit 5f9b0e7703
No known key found for this signature in database
GPG Key ID: BD254878922AF198

View File

@ -547,7 +547,7 @@ class Entity implements JsonSerializable
$maybeColumnName = $this->mapProperty($key);
// Property name which has mapped column name
if (($key !== $maybeColumnName)) {
if ($key !== $maybeColumnName) {
return false;
}