Skip to content

Commit

Permalink
Merge pull request #9 from lamoda/fixGetterCorrection
Browse files Browse the repository at this point in the history
Fix Correction getCashier return type
  • Loading branch information
DmitriyMatvienko authored Oct 1, 2021
2 parents 7fb0f9b + 2aeb12e commit f979eac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/V4/DTO/Correction/Correction.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function setVats(array $vats): self
return $this;
}

public function getCashier(): string
public function getCashier(): ?string
{
return $this->cashier;
}
Expand Down
2 changes: 1 addition & 1 deletion src/V5/DTO/Correction/Correction.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public function setVats(array $vats): self
return $this;
}

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

0 comments on commit f979eac

Please sign in to comment.