Skip to content

Commit

Permalink
Patch table prop issue in Record constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksagona committed Dec 15, 2023
1 parent dc85597 commit 5df9977
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Record.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ public function __construct()

if ($table !== null) {
$this->setTable($table);
} else if ($this->table !== null) {
$this->setTable($this->table);
} else {
$this->setTableFromClassName($class);
}
Expand Down

0 comments on commit 5df9977

Please sign in to comment.