Skip to content

Commit

Permalink
fixed types
Browse files Browse the repository at this point in the history
  • Loading branch information
FCStephanAltmann committed Feb 27, 2019
1 parent 59af04e commit 21e9a7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ValueObjects/OrderPosition.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function getOrderId()
/**
* @param string $orderId
*/
public function setOrderId(string $orderId)
public function setOrderId($orderId)
{
$this->orderId = $orderId;
}
Expand Down Expand Up @@ -94,7 +94,7 @@ public function getInternalIdentifier()
/**
* @param string $internalIdentifier
*/
public function setInternalIdentifier(string $internalIdentifier)
public function setInternalIdentifier($internalIdentifier)
{
$this->internalIdentifier = $internalIdentifier;
}
Expand All @@ -110,7 +110,7 @@ public function getExternalIdentifier()
/**
* @param string $externalIdentifier
*/
public function setExternalIdentifier(string $externalIdentifier)
public function setExternalIdentifier($externalIdentifier)
{
$this->externalIdentifier = $externalIdentifier;
}
Expand Down

0 comments on commit 21e9a7f

Please sign in to comment.