Skip to content

Commit

Permalink
Added missing PHP doc annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskonnertz authored Apr 21, 2018
1 parent 0741b40 commit a8c7850
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ChrisKonnertz/BBCode/BBCode.php
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ public function render($text = null, $escape = true, $keepLines = true)
* @param Tag $tag The current tag
* @param string $html The current HTML code passed by reference - might be altered!
* @param Tag|null $openingTag The opening tag that is linked to the tag (or null)
* @param Tag[] $openTags Array with tags that are opned but not closed
* @return string
*/
protected function generateTag(Tag $tag, &$html, Tag $openingTag = null, array $openTags = [])
Expand Down Expand Up @@ -700,4 +701,4 @@ protected function endsWith($haystack, $needle)
{
return ($needle === '' or mb_substr($haystack, -mb_strlen($needle)) === $needle);
}
}
}

0 comments on commit a8c7850

Please sign in to comment.