Skip to content

Commit 72c23af

Browse files
committed
Merge branch '7.3' into 7.4
* 7.3: fix CS error if the fields option is missing for the Collection constraint fix merge remove an invalid test [Translation] fix support of `TranslatableInterface` in `IdentityTranslator` Fix various bool-type coercions
2 parents 3836f50 + 317916e commit 72c23af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PropertyAccessorBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public function disableMagicSet(): static
128128
*/
129129
public function isMagicCallEnabled(): bool
130130
{
131-
return (bool) ($this->magicMethods & PropertyAccessor::MAGIC_CALL);
131+
return $this->magicMethods & PropertyAccessor::MAGIC_CALL;
132132
}
133133

134134
/**

0 commit comments

Comments
 (0)