From ac6c4b131844a551453203189f9d898c2399cd84 Mon Sep 17 00:00:00 2001
From: Marius <tzyganu@gmail.com>
Date: Thu, 26 Mar 2015 23:14:38 +0200
Subject: [PATCH] annotations

---
 .../Magento/Framework/Data/Form/Element/Textarea.php  | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Textarea.php b/lib/internal/Magento/Framework/Data/Form/Element/Textarea.php
index cf56737b752..4dbb5cfeb75 100644
--- a/lib/internal/Magento/Framework/Data/Form/Element/Textarea.php
+++ b/lib/internal/Magento/Framework/Data/Form/Element/Textarea.php
@@ -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();
-- 
GitLab