Skip to content

Commit

Permalink
style (Order): Add better PHP-doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphaël Pommier committed Aug 22, 2016
1 parent a534429 commit 1856204
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Bpost/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ public function __construct($reference)
}

/**
* @param array $boxes
* @param Box[] $boxes
*/
public function setBoxes($boxes)
public function setBoxes(array $boxes)
{
$this->boxes = $boxes;
}
Expand Down Expand Up @@ -101,9 +101,9 @@ public function getCostCenter()
}

/**
* @param array $lines
* @param Line[] $lines
*/
public function setLines($lines)
public function setLines(array $lines)
{
$this->lines = $lines;
}
Expand Down

0 comments on commit 1856204

Please sign in to comment.