We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 302f2f1 commit af0c2f1Copy full SHA for af0c2f1
1 file changed
system/Entity/Entity.php
@@ -551,10 +551,10 @@ public function __unset(string $key): void
551
*/
552
protected function isMappedDbColumn(string $key): bool
553
{
554
- $maybeColumnName = $this->mapProperty($key);
+ $dbColumn = $this->mapProperty($key);
555
556
// Property name which has mapped column name
557
- if ($key !== $maybeColumnName) {
+ if ($key !== $dbColumn) {
558
return false;
559
}
560
0 commit comments