Skip to content

Commit

Permalink
getBranchNumber nullable return type
Browse files Browse the repository at this point in the history
As the constructor allows the branchNumber to be null. The getter should have a nullable return type.
  • Loading branch information
Dylan-DutchAndBold authored and Thijs Reijgersberg committed Jun 29, 2018
1 parent dd963e2 commit 385f883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Client/Profile/Company.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function getKvkNumber(): int
return $this->kvkNumber;
}

public function getBranchNumber(): string
public function getBranchNumber(): ?string
{
return $this->branchNumber;
}
Expand Down

0 comments on commit 385f883

Please sign in to comment.