Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update HtmlHelper.php #16682

Merged
merged 1 commit into from Aug 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/View/Helper/HtmlHelper.php
Expand Up @@ -850,9 +850,9 @@ public function tableCell(string $content, array $options = []): string
* - `escape` Whether the contents should be html_entity escaped.
*
* @param string $name Tag name.
* @param string|null $text String content that will appear inside the div element.
* @param string|null $text String content that will appear inside the HTML element.
* If null, only a start tag will be printed
* @param array<string, mixed> $options Additional HTML attributes of the DIV tag, see above.
* @param array<string, mixed> $options Additional HTML attributes of the HTML tag, see above.
* @return string The formatted tag element
*/
public function tag(string $name, ?string $text = null, array $options = []): string
Expand Down