Skip to content

Commit

Permalink
Merge pull request #651 from weha/main
Browse files Browse the repository at this point in the history
added getState function to be able to use it in the callbackfunctions #649
  • Loading branch information
stephangroen authored Oct 2, 2024
2 parents 5ec0ae3 + a0a7d62 commit b5b36c5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Picqer/Financials/Exact/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,11 @@ public function setForceLogin(bool $forceLogin): void
$this->forceLogin = $forceLogin;
}

public function getState()
{
return $this->state;
}

public function setState(string $state): void
{
$this->state = $state;
Expand Down

0 comments on commit b5b36c5

Please sign in to comment.