File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
lib/internal/Magento/Framework/Data/Form/Element Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 13
13
14
14
use Magento \Framework \Escaper ;
15
15
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
+ */
16
23
class Textarea extends AbstractElement
17
24
{
18
25
/**
@@ -83,8 +90,8 @@ public function getElementHtml()
83
90
{
84
91
$ this ->addClass ('textarea ' );
85
92
$ html = '<textarea id=" ' . $ this ->getHtmlId () . '" name=" ' . $ this ->getName () . '" ' . $ this ->serialize (
86
- $ this ->getHtmlAttributes ()
87
- ) . $ this ->_getUiId () . ' > ' ;
93
+ $ this ->getHtmlAttributes ()
94
+ ) . $ this ->_getUiId () . ' > ' ;
88
95
$ html .= $ this ->getEscapedValue ();
89
96
$ html .= "</textarea> " ;
90
97
$ html .= $ this ->getAfterElementHtml ();
You can’t perform that action at this time.
0 commit comments