Skip to content

Commit ac6c4b1

Browse files
committed
annotations
1 parent 3d5766b commit ac6c4b1

File tree

1 file changed

+9
-2
lines changed
  • lib/internal/Magento/Framework/Data/Form/Element

1 file changed

+9
-2
lines changed

lib/internal/Magento/Framework/Data/Form/Element/Textarea.php

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@
1313

1414
use Magento\Framework\Escaper;
1515

16+
/**
17+
* @method Textarea setExtType($extType)
18+
* @method mixed getCols()
19+
* @method Textarea setCols($cols)
20+
* @method mixed getRows()
21+
* @method mixed setRows($rows)
22+
*/
1623
class Textarea extends AbstractElement
1724
{
1825
/**
@@ -83,8 +90,8 @@ public function getElementHtml()
8390
{
8491
$this->addClass('textarea');
8592
$html = '<textarea id="' . $this->getHtmlId() . '" name="' . $this->getName() . '" ' . $this->serialize(
86-
$this->getHtmlAttributes()
87-
) . $this->_getUiId() . ' >';
93+
$this->getHtmlAttributes()
94+
) . $this->_getUiId() . ' >';
8895
$html .= $this->getEscapedValue();
8996
$html .= "</textarea>";
9097
$html .= $this->getAfterElementHtml();

0 commit comments

Comments
 (0)