Skip to content

Commit fc9c48a

Browse files
authored
Merge pull request #65 from RoyHP/master
Fix calling wrong method for getting table name
2 parents 73ce864 + fd2990b commit fc9c48a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ModelTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ public static function getObserverClassName()
2424

2525
public function getDynamoDbTableName()
2626
{
27-
return $this->getTableName();
27+
return $this->getTable();
2828
}
2929
}

0 commit comments

Comments
 (0)