Skip to content

Commit 849b672

Browse files
committed
strict type fix
1 parent 3e535a4 commit 849b672

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Forms/Controls/TextArea.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ public function __construct($label = null)
3535
public function getControl(): Nette\Utils\Html
3636
{
3737
return parent::getControl()
38-
->setText($this->getRenderedValue());
38+
->setText((string) $this->getRenderedValue());
3939
}
4040
}

0 commit comments

Comments
 (0)