Skip to content

Commit

Permalink
Merge pull request #1 from BiffBangPow/master
Browse files Browse the repository at this point in the history
Fix indenting to make builds pass
  • Loading branch information
rudkjobing authored Jun 20, 2017
2 parents 25d709c + cacd47b commit a1b8b76
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Faker/Provider/HtmlLorem.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ public function randomHtml($maxDepth = 4, $maxWidth = 4)
}

/**
* @param int $maxDepth
* @param int $maxWidth
*
* @return string
*/
public function randomBody($maxDepth = 4, $maxWidth = 4)
Expand All @@ -80,6 +83,9 @@ public function randomBody($maxDepth = 4, $maxWidth = 4)
}

/**
* @param int $maxDepth
* @param int $maxWidth
*
* @return string
*/
public function randomBodyFragments($maxDepth = 4, $maxWidth = 4)
Expand Down Expand Up @@ -153,7 +159,7 @@ private function addRandomAttribute(\DOMElement $node)
$node->setAttribute("class", $this->generator->word);
break;
case 2:
$randomNumber = $this->generator->randomNumber(5);
$randomNumber = $this->generator->randomNumber(5);
$node->setAttribute("id", (string)$randomNumber);
break;
}
Expand Down

0 comments on commit a1b8b76

Please sign in to comment.