Skip to content

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krzGablo committed Feb 21, 2024
1 parent cf7f909 commit f129fac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Model/Token.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -53,4 +48,9 @@ public function setVendor(?string $vendor = null): self

return $this;
}

protected function _construct()
{
$this->_init(ResourceModel\Token::class);
}
}

0 comments on commit f129fac

Please sign in to comment.