diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Textarea.php b/lib/internal/Magento/Framework/Data/Form/Element/Textarea.php
index ebc4eebec32ae56c39fa39b7befd3f49a229d6d9..26826e2515fc1386ff4fdf7e29d3243a4b0620c6 100644
--- a/lib/internal/Magento/Framework/Data/Form/Element/Textarea.php
+++ b/lib/internal/Magento/Framework/Data/Form/Element/Textarea.php
@@ -13,25 +13,15 @@ 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 Textarea setRows($rows)
- */
 class Textarea extends AbstractElement
 {
     /**
-     * default number of rows
-     *
-     * @var int
+     * Default number of rows
      */
     const DEFAULT_ROWS = 2;
+
     /**
-     * default number of cols
-     *
-     * @var int
+     * Default number of columns
      */
     const DEFAULT_COLS = 15;
 
@@ -89,9 +79,8 @@ class Textarea extends AbstractElement
     public function getElementHtml()
     {
         $this->addClass('textarea');
-        $html = '<textarea id="' . $this->getHtmlId() . '" name="' . $this->getName() . '" ' . $this->serialize(
-                $this->getHtmlAttributes()
-            ) . $this->_getUiId() . ' >';
+        $html = '<textarea id="' . $this->getHtmlId() . '" name="' . $this->getName() . '" '
+            . $this->serialize($this->getHtmlAttributes()) . $this->_getUiId() . ' >';
         $html .= $this->getEscapedValue();
         $html .= "</textarea>";
         $html .= $this->getAfterElementHtml();