From cacd47b8c9c80c859e507811c8b9cdab26299a66 Mon Sep 17 00:00:00 2001 From: Will Gibson Date: Tue, 20 Jun 2017 11:13:43 +0100 Subject: [PATCH] Fix indenting --- src/Faker/Provider/HtmlLorem.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Faker/Provider/HtmlLorem.php b/src/Faker/Provider/HtmlLorem.php index 6435da4614..18081448cb 100644 --- a/src/Faker/Provider/HtmlLorem.php +++ b/src/Faker/Provider/HtmlLorem.php @@ -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) @@ -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) @@ -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; }