Skip to content

Commit

Permalink
feat: implementa set e get de province
Browse files Browse the repository at this point in the history
  • Loading branch information
docdev42 committed Sep 5, 2024
1 parent 8ccd386 commit 6cb3990
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Entity/Account/Account.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,16 @@ class Account extends Entity
*/
protected int $incomeValue;

public function getProvince(): string
{
return $this->province;
}

public function setProvince(string $province): void
{
$this->province = $province;
}

public function getName(): string
{
return $this->name;
Expand Down

0 comments on commit 6cb3990

Please sign in to comment.