diff --git a/Model/Token.php b/Model/Token.php index f87cfe8..4988490 100644 --- a/Model/Token.php +++ b/Model/Token.php @@ -7,11 +7,6 @@ class Token extends AbstractModel implements TokensInterface { - protected function _construct() - { - $this->_init(ResourceModel\Token::class); - } - public function setCustomerId(string $id): self { $this->setData('cli_id', $id); @@ -53,4 +48,9 @@ public function setVendor(?string $vendor = null): self return $this; } + + protected function _construct() + { + $this->_init(ResourceModel\Token::class); + } }