Skip to content
Snippets Groups Projects
Commit ac6c4b13 authored by Marius's avatar Marius
Browse files

annotations

parent 3d5766b1
Branches
No related merge requests found
......@@ -13,6 +13,13 @@ namespace Magento\Framework\Data\Form\Element;
use Magento\Framework\Escaper;
/**
* @method Textarea setExtType($extType)
* @method mixed getCols()
* @method Textarea setCols($cols)
* @method mixed getRows()
* @method mixed setRows($rows)
*/
class Textarea extends AbstractElement
{
/**
......@@ -83,8 +90,8 @@ class Textarea extends AbstractElement
{
$this->addClass('textarea');
$html = '<textarea id="' . $this->getHtmlId() . '" name="' . $this->getName() . '" ' . $this->serialize(
$this->getHtmlAttributes()
) . $this->_getUiId() . ' >';
$this->getHtmlAttributes()
) . $this->_getUiId() . ' >';
$html .= $this->getEscapedValue();
$html .= "</textarea>";
$html .= $this->getAfterElementHtml();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment