Completed
Branch master (113b0a)
by Roberto
11:21
created
src/Common/Block.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@
 block discarded – undo
11 11
     protected $bloco = '';
12 12
     protected $elementTotal;
13 13
 
14
+    /**
15
+     * @param string $total
16
+     */
14 17
     public function __construct($total)
15 18
     {
16 19
         $this->elementTotal = $total;
Please login to merge, or discard this patch.
src/Common/Element.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,9 @@  discard block
 block discarded – undo
12 12
     protected $parameters;
13 13
     private $reg;
14 14
 
15
+    /**
16
+     * @param string $reg
17
+     */
15 18
     public function __construct($reg)
16 19
     {
17 20
         $this->reg = $reg;
@@ -170,7 +173,6 @@  discard block
 block discarded – undo
170 173
 
171 174
     /**
172 175
      * Construtor do elemento
173
-     * @param type $reg
174 176
      * @return string
175 177
      */
176 178
     protected function build()
Please login to merge, or discard this patch.