Skip to content

Commit

Permalink
Fixes #1 ClientOrderId can be a string too
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Kasatkin committed Dec 19, 2016
1 parent ae9b356 commit 68776bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Point.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ public function setWeight(int $weight): self
}

/**
* @param int $clientOrderId
* @param string $clientOrderId
*
* @return self
*/
public function setClientOrderId(int $clientOrderId): self
public function setClientOrderId(string $clientOrderId): self
{
$this->clientOrderId = $clientOrderId;
return $this;
Expand Down

0 comments on commit 68776bc

Please sign in to comment.