Completed
Push — master ( 3d583b...c523cc )
by Francimar
09:36
created
api/NFe/Entity/Imposto/COFINS/Quantidade.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@
 block discarded – undo
40 40
         $this->setTributacao('03');
41 41
     }
42 42
 
43
+    /**
44
+     * @return string|null
45
+     */
43 46
     public function getQuantidade($normalize = false)
44 47
     {
45 48
         if (!$normalize) {
Please login to merge, or discard this patch.
api/NFe/Entity/Imposto/ICMS/Base.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -58,6 +58,7 @@
 block discarded – undo
58 58
      * 1 - Estrangeira - Importação direta
59 59
      *
60 60
      * 2 - Estrangeira - Adquirida no mercado interno
61
+     * @return string|null
61 62
      */
62 63
     public function getOrigem($normalize = false)
63 64
     {
Please login to merge, or discard this patch.
api/NFe/Entity/Imposto/ICMS/Normal.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
         parent::__construct($normal);
46 46
     }
47 47
 
48
+    /**
49
+     * @return string|null
50
+     */
48 51
     public function getModalidade($normalize = false)
49 52
     {
50 53
         if (!$normalize) {
Please login to merge, or discard this patch.
api/NFe/Entity/Imposto/ICMS/Parcial.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -106,6 +106,9 @@  discard block
 block discarded – undo
106 106
         return $this;
107 107
     }
108 108
 
109
+    /**
110
+     * @return string|null
111
+     */
109 112
     public function getMargem($normalize = false)
110 113
     {
111 114
         if (!$normalize) {
@@ -120,6 +123,9 @@  discard block
 block discarded – undo
120 123
         return $this;
121 124
     }
122 125
 
126
+    /**
127
+     * @return string|null
128
+     */
123 129
     public function getReducao($normalize = false)
124 130
     {
125 131
         if (!$normalize) {
Please login to merge, or discard this patch.
api/NFe/Entity/Imposto/II.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -50,6 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     /**
52 52
      * Informar o valor das despesas aduaneiras
53
+     * @return string|null
53 54
      */
54 55
     public function getDespesas($normalize = false)
55 56
     {
@@ -67,6 +68,7 @@  discard block
 block discarded – undo
67 68
 
68 69
     /**
69 70
      * Informar a o valor do Imposto de Importação
71
+     * @return string|null
70 72
      */
71 73
     public function getValor($normalize = false)
72 74
     {
@@ -84,6 +86,7 @@  discard block
 block discarded – undo
84 86
 
85 87
     /**
86 88
      * Informar o Valor do IOF - Imposto sobre Operações Financeiras
89
+     * @return string|null
87 90
      */
88 91
     public function getIOF($normalize = false)
89 92
     {
Please login to merge, or discard this patch.
api/NFe/Entity/Imposto/IPI.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -126,6 +126,7 @@
 block discarded – undo
126 126
     /**
127 127
      * Código de Enquadramento Legal do IPI, informar 999 enquanto a tabela não
128 128
      * tiver sido criada pela Receita Federal do Brasil
129
+     * @return string|null
129 130
      */
130 131
     public function getEnquadramento($normalize = false)
131 132
     {
Please login to merge, or discard this patch.
api/NFe/Entity/Imposto/IPI/Aliquota.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -60,6 +60,7 @@
 block discarded – undo
60 60
      * 49 - Outras entradas
61 61
      * 50-Saída tributada
62 62
      * 99-Outras saídas
63
+     * @return string|null
63 64
      */
64 65
     public function getTributacao($normalize = false)
65 66
     {
Please login to merge, or discard this patch.
api/NFe/Entity/Imposto/IPI/Isento.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -59,6 +59,7 @@
 block discarded – undo
59 59
      * 54-Saída imune
60 60
      * 55-Saída com
61 61
      * suspensão
62
+     * @return string|null
62 63
      */
63 64
     public function getTributacao($normalize = false)
64 65
     {
Please login to merge, or discard this patch.
api/NFe/Entity/Imposto/IPI/Quantidade.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@  discard block
 block discarded – undo
42 42
         $this->setGrupo(self::GRUPO_IPI);
43 43
     }
44 44
 
45
+    /**
46
+     * @return string|null
47
+     */
45 48
     public function getQuantidade($normalize = false)
46 49
     {
47 50
         if (!$normalize) {
@@ -55,6 +58,9 @@  discard block
 block discarded – undo
55 58
         return $this->setBase($quantidade);
56 59
     }
57 60
 
61
+    /**
62
+     * @return string|null
63
+     */
58 64
     public function getPreco($normalize = false)
59 65
     {
60 66
         if (!$normalize) {
Please login to merge, or discard this patch.