Skip to content

Commit

Permalink
Add setter for source
Browse files Browse the repository at this point in the history
  • Loading branch information
dlubitz committed Jan 27, 2024
1 parent 9de0435 commit f2dda31
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Classes/Domain/V12/TransUnit.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ public function getSource(): Source
return $this->source;
}

public function setSource(Source $source): void
{
$this->source = $source;
}

public function getTarget(): ?Target
{
return $this->target;
Expand Down

0 comments on commit f2dda31

Please sign in to comment.