Skip to content

Commit af0c2f1

Browse files
committed
refactor: rename variable name
1 parent 302f2f1 commit af0c2f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

system/Entity/Entity.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,10 +551,10 @@ public function __unset(string $key): void
551551
*/
552552
protected function isMappedDbColumn(string $key): bool
553553
{
554-
$maybeColumnName = $this->mapProperty($key);
554+
$dbColumn = $this->mapProperty($key);
555555

556556
// Property name which has mapped column name
557-
if ($key !== $maybeColumnName) {
557+
if ($key !== $dbColumn) {
558558
return false;
559559
}
560560

0 commit comments

Comments
 (0)