Skip to content

Commit

Permalink
fixed CS errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Mindaugas Rukas committed Jan 13, 2015
1 parent 082dcf1 commit c0be9f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Document/AbstractCategoryDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public function getChild($key)
* If key is null value is put to the end.
*
* @param AbstractCategoryDocument|\Iterator $value
* @param string $key
* @param string $key
*/
public function setChild($value, $key = null)
{
Expand Down
14 changes: 7 additions & 7 deletions Service/CategoryService.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ protected function buildQuery()
* Builds a child node.
*
* @param AbstractCategoryDocument $node
* @param \ArrayIterator $references
* @param int $maxLevel
* @param \ArrayIterator $references
* @param int $maxLevel
*/
private function buildChildNode($node, $references, $maxLevel)
{
Expand Down Expand Up @@ -122,8 +122,8 @@ public function getCategory($id)
* Builds a root node.
*
* @param AbstractCategoryDocument $node
* @param \ArrayIterator $tree
* @param int $level
* @param \ArrayIterator $tree
* @param int $level
*/
private function buildRootNode($node, $tree, $level)
{
Expand All @@ -135,9 +135,9 @@ private function buildRootNode($node, $tree, $level)
* Builds a node. Sets node parameters.
*
* @param AbstractCategoryDocument $node
* @param \ArrayIterator $references
* @param \ArrayIterator $tree
* @param int $maxLevel
* @param \ArrayIterator $references
* @param \ArrayIterator $tree
* @param int $maxLevel
*/
private function buildNode($node, $references, $tree, $maxLevel)
{
Expand Down

0 comments on commit c0be9f8

Please sign in to comment.