Completed
Push — master ( 0f09a1...af57be )
by Adriano
04:45
created
src/Integracao/ControlPay/API/IntencaoVendaApi.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@  discard block
 block discarded – undo
31 31
      */
32 32
     public function getByFiltros(Contracts\IntencaoVenda\GetByFiltrosRequest $getByFiltrosRequest)
33 33
     {
34
-        try{
35
-            $this->response = $this->_httpClient->post(__FUNCTION__,[
34
+        try {
35
+            $this->response = $this->_httpClient->post(__FUNCTION__, [
36 36
                 'body' => json_encode($getByFiltrosRequest),
37 37
             ]);
38 38
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             );
43 43
         }catch (RequestException $ex) {
44 44
             $this->requestException($ex);
45
-        }catch (\Exception $ex){
45
+        }catch (\Exception $ex) {
46 46
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
47 47
         }
48 48
     }
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public function getById($intencaoVendaId)
56 56
     {
57
-        try{
58
-            $this->response = $this->_httpClient->post(__FUNCTION__,[
57
+        try {
58
+            $this->response = $this->_httpClient->post(__FUNCTION__, [
59 59
                 'query' => $this->addQueryAdditionalParameters([
60 60
                     'intencaoVendaId' => $intencaoVendaId
61 61
                 ])
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
             );
68 68
         }catch (RequestException $ex) {
69 69
             $this->requestException($ex);
70
-        }catch (\Exception $ex){
70
+        }catch (\Exception $ex) {
71 71
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
72 72
         }
73 73
     }
Please login to merge, or discard this patch.
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
                 $this->response->json(),
41 41
                 Contracts\IntencaoVenda\GetByFiltrosResponse::class
42 42
             );
43
-        }catch (RequestException $ex) {
43
+        } catch (RequestException $ex) {
44 44
             $this->requestException($ex);
45
-        }catch (\Exception $ex){
45
+        } catch (\Exception $ex){
46 46
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
47 47
         }
48 48
     }
@@ -65,9 +65,9 @@  discard block
 block discarded – undo
65 65
                 $this->response->json(),
66 66
                 Contracts\IntencaoVenda\GetByIdResponse::class
67 67
             );
68
-        }catch (RequestException $ex) {
68
+        } catch (RequestException $ex) {
69 69
             $this->requestException($ex);
70
-        }catch (\Exception $ex){
70
+        } catch (\Exception $ex){
71 71
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
72 72
         }
73 73
     }
Please login to merge, or discard this patch.
src/Integracao/ControlPay/Client.php 2 patches
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      */
71 71
     public function getParameter($key)
72 72
     {
73
-        return isset($this->_params[$key]) ? $this->_params[$key] : null;
73
+        return isset($this->_params[ $key ]) ? $this->_params[ $key ] : null;
74 74
     }
75 75
 
76 76
     /**
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      */
83 83
     public function setParameter($key, $value)
84 84
     {
85
-        $this->_params[$key] = $value;
85
+        $this->_params[ $key ] = $value;
86 86
         $this->loadParameters($this->_params, $this->authentication);
87 87
         return $this;
88 88
     }
@@ -96,25 +96,25 @@  discard block
 block discarded – undo
96 96
      */
97 97
     private function loadParameters($params, IAuthentication $authentication = null)
98 98
     {
99
-        $this->_params[ControlPayParameterConst::CONTROLPAY_HOST] = getenv('CONTROLPAY_HOST');
100
-        $this->_params[ControlPayParameterConst::CONTROLPAY_TIMEOUT] = getenv('CONTROLPAY_TIMEOUT');
101
-        $this->_params[ControlPayParameterConst::CONTROLPAY_USER] = getenv('CONTROLPAY_USER');
102
-        $this->_params[ControlPayParameterConst::CONTROLPAY_PWD] = getenv('CONTROLPAY_PWD');
103
-        $this->_params[ControlPayParameterConst::CONTROLPAY_KEY] = getenv('CONTROLPAY_KEY');
104
-        $this->_params[ControlPayParameterConst::CONTROLPAY_DEFAULT_PESSOA_ID] = getenv('CONTROLPAY_DEFAULT_PESSOA_ID');
105
-        $this->_params[ControlPayParameterConst::CONTROLPAY_DEFAULT_PRODUTO_QTDE] = getenv('CONTROLPAY_DEFAULT_PRODUTO_QTDE');
106
-        $this->_params[ControlPayParameterConst::CONTROLPAY_DEFAULT_TERMINAL_ID] = getenv('CONTROLPAY_DEFAULT_TERMINAL_ID');
107
-        $this->_params[ControlPayParameterConst::CONTROLPAY_DEFAULT_PRODUTO_ID] = getenv('CONTROLPAY_DEFAULT_PRODUTO_ID');
108
-        $this->_params[ControlPayParameterConst::CONTROLPAY_DEFAULT_FORMA_PAGAMENTO_ID] = getenv('CONTROLPAY_DEFAULT_FORMA_PAGAMENTO_ID');
109
-        $this->_params[ControlPayParameterConst::CONTROLPAY_DEFAULT_FORMA_AGUARDA_TEF] = getenv('CONTROLPAY_DEFAULT_FORMA_AGUARDA_TEF');
110
-        $this->_params[ControlPayParameterConst::CONTROLPAY_DEFAULT_SENHA_TECNICA] = getenv('CONTROLPAY_DEFAULT_SENHA_TECNICA');
111
-        $this->_params[ControlPayParameterConst::CONTROLPAY_OAUTH_TYPE] = KeyQueryStringAuthentication::class;
112
-
113
-
114
-        if(!is_null($params))
99
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_HOST ] = getenv('CONTROLPAY_HOST');
100
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_TIMEOUT ] = getenv('CONTROLPAY_TIMEOUT');
101
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_USER ] = getenv('CONTROLPAY_USER');
102
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_PWD ] = getenv('CONTROLPAY_PWD');
103
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_KEY ] = getenv('CONTROLPAY_KEY');
104
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_DEFAULT_PESSOA_ID ] = getenv('CONTROLPAY_DEFAULT_PESSOA_ID');
105
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_DEFAULT_PRODUTO_QTDE ] = getenv('CONTROLPAY_DEFAULT_PRODUTO_QTDE');
106
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_DEFAULT_TERMINAL_ID ] = getenv('CONTROLPAY_DEFAULT_TERMINAL_ID');
107
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_DEFAULT_PRODUTO_ID ] = getenv('CONTROLPAY_DEFAULT_PRODUTO_ID');
108
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_DEFAULT_FORMA_PAGAMENTO_ID ] = getenv('CONTROLPAY_DEFAULT_FORMA_PAGAMENTO_ID');
109
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_DEFAULT_FORMA_AGUARDA_TEF ] = getenv('CONTROLPAY_DEFAULT_FORMA_AGUARDA_TEF');
110
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_DEFAULT_SENHA_TECNICA ] = getenv('CONTROLPAY_DEFAULT_SENHA_TECNICA');
111
+        $this->_params[ ControlPayParameterConst::CONTROLPAY_OAUTH_TYPE ] = KeyQueryStringAuthentication::class;
112
+
113
+
114
+        if (!is_null($params))
115 115
             foreach ($params as $key => $param)
116 116
             {
117
-                if(!in_array($key, [
117
+                if (!in_array($key, [
118 118
                     ControlPayParameterConst::CONTROLPAY_HOST,
119 119
                     ControlPayParameterConst::CONTROLPAY_TIMEOUT,
120 120
                     ControlPayParameterConst::CONTROLPAY_USER,
@@ -132,11 +132,11 @@  discard block
 block discarded – undo
132 132
                     throw new \Exception(sprintf("Parâmetro %s inválido", $key));
133 133
             }
134 134
 
135
-        if(!is_null($params) && is_array($params))
135
+        if (!is_null($params) && is_array($params))
136 136
             foreach ($params as $key => $value)
137
-                $this->_params[$key] = $value;
137
+                $this->_params[ $key ] = $value;
138 138
 
139
-        if(is_null($authentication))
139
+        if (is_null($authentication))
140 140
         {
141 141
             $this->authentication = AuthenticationFactory::getInstance($this->_params, $this);
142 142
             return;
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -111,8 +111,8 @@  discard block
 block discarded – undo
111 111
         $this->_params[ControlPayParameterConst::CONTROLPAY_OAUTH_TYPE] = KeyQueryStringAuthentication::class;
112 112
 
113 113
 
114
-        if(!is_null($params))
115
-            foreach ($params as $key => $param)
114
+        if(!is_null($params)) {
115
+                    foreach ($params as $key => $param)
116 116
             {
117 117
                 if(!in_array($key, [
118 118
                     ControlPayParameterConst::CONTROLPAY_HOST,
@@ -130,11 +130,13 @@  discard block
 block discarded – undo
130 130
                     ControlPayParameterConst::CONTROLPAY_DEFAULT_SENHA_TECNICA
131 131
                 ]))
132 132
                     throw new \Exception(sprintf("Parâmetro %s inválido", $key));
133
+        }
133 134
             }
134 135
 
135
-        if(!is_null($params) && is_array($params))
136
-            foreach ($params as $key => $value)
136
+        if(!is_null($params) && is_array($params)) {
137
+                    foreach ($params as $key => $value)
137 138
                 $this->_params[$key] = $value;
139
+        }
138 140
 
139 141
         if(is_null($authentication))
140 142
         {
Please login to merge, or discard this patch.
src/Integracao/ControlPay/API/VendaApi.php 2 patches
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -42,19 +42,19 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function vender(Contracts\Venda\VenderRequest $venderRequest)
44 44
     {
45
-        try{
45
+        try {
46 46
 
47
-            if(empty($venderRequest->getTerminalId()))
47
+            if (empty($venderRequest->getTerminalId()))
48 48
                 $venderRequest->setTerminalId(
49 49
                     $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_TERMINAL_ID)
50 50
                 );
51 51
 
52
-            if(empty($venderRequest->getFormaPagamentoId()))
52
+            if (empty($venderRequest->getFormaPagamentoId()))
53 53
                 $venderRequest->setFormaPagamentoId(
54 54
                     $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_FORMA_PAGAMENTO_ID)
55 55
                 );
56 56
 
57
-            if(empty($venderRequest->isAguardarTefIniciarTransacao()))
57
+            if (empty($venderRequest->isAguardarTefIniciarTransacao()))
58 58
                 $venderRequest->setAguardarTefIniciarTransacao(
59 59
                     boolval(
60 60
                         $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_FORMA_AGUARDA_TEF)
@@ -63,18 +63,18 @@  discard block
 block discarded – undo
63 63
 
64 64
             foreach ($venderRequest->getProdutosVendidos() as $key => $produto)
65 65
             {
66
-                if(empty($produto->getId()))
67
-                    $venderRequest->getProdutosVendidos()[$key]->setId(
66
+                if (empty($produto->getId()))
67
+                    $venderRequest->getProdutosVendidos()[ $key ]->setId(
68 68
                         $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_PRODUTO_ID)
69 69
                     );
70 70
 
71
-                if(empty($produto->getQuantidade()))
72
-                    $venderRequest->getProdutosVendidos()[$key]->setQuantidade(
71
+                if (empty($produto->getQuantidade()))
72
+                    $venderRequest->getProdutosVendidos()[ $key ]->setQuantidade(
73 73
                         $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_PRODUTO_QTDE)
74 74
                     );
75 75
             }
76 76
 
77
-            $this->response = $this->_httpClient->post(__FUNCTION__,[
77
+            $this->response = $this->_httpClient->post(__FUNCTION__, [
78 78
                 'body' => json_encode($venderRequest),
79 79
             ]);
80 80
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
             );
85 85
         }catch (RequestException $ex) {
86 86
             $this->requestException($ex);
87
-        }catch (\Exception $ex){
87
+        }catch (\Exception $ex) {
88 88
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
89 89
         }
90 90
     }
@@ -96,10 +96,10 @@  discard block
 block discarded – undo
96 96
      */
97 97
     public function venderComPedido(Contracts\Venda\VenderComPedidoRequest $venderComPedidoRequest)
98 98
     {
99
-        try{
99
+        try {
100 100
             $response = $this->pedidoApi->insert($venderComPedidoRequest->getPedidoInserirRequest());
101 101
 
102
-            if(empty($response->getPedido()->getId()))
102
+            if (empty($response->getPedido()->getId()))
103 103
                 throw new \Exception("Falha ao inserir pedido");
104 104
 
105 105
             $venderComPedidoRequest->getInventarioVenderRequest()->setPedidoId(
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
             return $this->vender($venderComPedidoRequest->getInventarioVenderRequest());
110 110
         }catch (RequestException $ex) {
111 111
             $this->requestException($ex);
112
-        }catch (\Exception $ex){
112
+        }catch (\Exception $ex) {
113 113
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
114 114
         }
115 115
     }
@@ -121,19 +121,19 @@  discard block
 block discarded – undo
121 121
      */
122 122
     public function cancelarVenda(Contracts\Venda\CancelarVendaRequest $cancelarVendaRequest)
123 123
     {
124
-        try{
124
+        try {
125 125
 
126
-            if(empty($cancelarVendaRequest->getTerminalId()))
126
+            if (empty($cancelarVendaRequest->getTerminalId()))
127 127
                 $cancelarVendaRequest->setTerminalId(
128 128
                     $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_TERMINAL_ID)
129 129
                 );
130 130
 
131
-            if(empty($cancelarVendaRequest->getSenhaTecnica()))
131
+            if (empty($cancelarVendaRequest->getSenhaTecnica()))
132 132
                 $cancelarVendaRequest->setSenhaTecnica(
133 133
                     $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_SENHA_TECNICA)
134 134
                 );
135 135
 
136
-            if(empty($cancelarVendaRequest->isAguardarTefIniciarTransacao()))
136
+            if (empty($cancelarVendaRequest->isAguardarTefIniciarTransacao()))
137 137
                 $cancelarVendaRequest->setAguardarTefIniciarTransacao(
138 138
                     boolval(
139 139
                         $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_FORMA_AGUARDA_TEF)
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
                 );
142 142
 
143 143
 
144
-            $this->response = $this->_httpClient->post(__FUNCTION__,[
144
+            $this->response = $this->_httpClient->post(__FUNCTION__, [
145 145
                 'body' => json_encode($cancelarVendaRequest),
146 146
             ]);
147 147
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
             );
152 152
         }catch (RequestException $ex) {
153 153
             $this->requestException($ex);
154
-        }catch (\Exception $ex){
154
+        }catch (\Exception $ex) {
155 155
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
156 156
         }
157 157
     }
Please login to merge, or discard this patch.
Braces   +33 added lines, -24 removed lines patch added patch discarded remove patch
@@ -44,34 +44,39 @@  discard block
 block discarded – undo
44 44
     {
45 45
         try{
46 46
 
47
-            if(empty($venderRequest->getTerminalId()))
48
-                $venderRequest->setTerminalId(
47
+            if(empty($venderRequest->getTerminalId())) {
48
+                            $venderRequest->setTerminalId(
49 49
                     $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_TERMINAL_ID)
50 50
                 );
51
+            }
51 52
 
52
-            if(empty($venderRequest->getFormaPagamentoId()))
53
-                $venderRequest->setFormaPagamentoId(
53
+            if(empty($venderRequest->getFormaPagamentoId())) {
54
+                            $venderRequest->setFormaPagamentoId(
54 55
                     $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_FORMA_PAGAMENTO_ID)
55 56
                 );
57
+            }
56 58
 
57
-            if(empty($venderRequest->isAguardarTefIniciarTransacao()))
58
-                $venderRequest->setAguardarTefIniciarTransacao(
59
+            if(empty($venderRequest->isAguardarTefIniciarTransacao())) {
60
+                            $venderRequest->setAguardarTefIniciarTransacao(
59 61
                     boolval(
60 62
                         $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_FORMA_AGUARDA_TEF)
61 63
                     )
62 64
                 );
65
+            }
63 66
 
64 67
             foreach ($venderRequest->getProdutosVendidos() as $key => $produto)
65 68
             {
66
-                if(empty($produto->getId()))
67
-                    $venderRequest->getProdutosVendidos()[$key]->setId(
69
+                if(empty($produto->getId())) {
70
+                                    $venderRequest->getProdutosVendidos()[$key]->setId(
68 71
                         $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_PRODUTO_ID)
69 72
                     );
73
+                }
70 74
 
71
-                if(empty($produto->getQuantidade()))
72
-                    $venderRequest->getProdutosVendidos()[$key]->setQuantidade(
75
+                if(empty($produto->getQuantidade())) {
76
+                                    $venderRequest->getProdutosVendidos()[$key]->setQuantidade(
73 77
                         $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_PRODUTO_QTDE)
74 78
                     );
79
+                }
75 80
             }
76 81
 
77 82
             $this->response = $this->_httpClient->post(__FUNCTION__,[
@@ -82,9 +87,9 @@  discard block
 block discarded – undo
82 87
                 $this->response->json(),
83 88
                 Contracts\Venda\VenderResponse::class
84 89
             );
85
-        }catch (RequestException $ex) {
90
+        } catch (RequestException $ex) {
86 91
             $this->requestException($ex);
87
-        }catch (\Exception $ex){
92
+        } catch (\Exception $ex){
88 93
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
89 94
         }
90 95
     }
@@ -99,17 +104,18 @@  discard block
 block discarded – undo
99 104
         try{
100 105
             $response = $this->pedidoApi->insert($venderComPedidoRequest->getPedidoInserirRequest());
101 106
 
102
-            if(empty($response->getPedido()->getId()))
103
-                throw new \Exception("Falha ao inserir pedido");
107
+            if(empty($response->getPedido()->getId())) {
108
+                            throw new \Exception("Falha ao inserir pedido");
109
+            }
104 110
 
105 111
             $venderComPedidoRequest->getInventarioVenderRequest()->setPedidoId(
106 112
                 $response->getPedido()->getId()
107 113
             );
108 114
 
109 115
             return $this->vender($venderComPedidoRequest->getInventarioVenderRequest());
110
-        }catch (RequestException $ex) {
116
+        } catch (RequestException $ex) {
111 117
             $this->requestException($ex);
112
-        }catch (\Exception $ex){
118
+        } catch (\Exception $ex){
113 119
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
114 120
         }
115 121
     }
@@ -123,22 +129,25 @@  discard block
 block discarded – undo
123 129
     {
124 130
         try{
125 131
 
126
-            if(empty($cancelarVendaRequest->getTerminalId()))
127
-                $cancelarVendaRequest->setTerminalId(
132
+            if(empty($cancelarVendaRequest->getTerminalId())) {
133
+                            $cancelarVendaRequest->setTerminalId(
128 134
                     $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_TERMINAL_ID)
129 135
                 );
136
+            }
130 137
 
131
-            if(empty($cancelarVendaRequest->getSenhaTecnica()))
132
-                $cancelarVendaRequest->setSenhaTecnica(
138
+            if(empty($cancelarVendaRequest->getSenhaTecnica())) {
139
+                            $cancelarVendaRequest->setSenhaTecnica(
133 140
                     $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_SENHA_TECNICA)
134 141
                 );
142
+            }
135 143
 
136
-            if(empty($cancelarVendaRequest->isAguardarTefIniciarTransacao()))
137
-                $cancelarVendaRequest->setAguardarTefIniciarTransacao(
144
+            if(empty($cancelarVendaRequest->isAguardarTefIniciarTransacao())) {
145
+                            $cancelarVendaRequest->setAguardarTefIniciarTransacao(
138 146
                     boolval(
139 147
                         $this->_client->getParameter(ControlPayParameterConst::CONTROLPAY_DEFAULT_FORMA_AGUARDA_TEF)
140 148
                     )
141 149
                 );
150
+            }
142 151
 
143 152
 
144 153
             $this->response = $this->_httpClient->post(__FUNCTION__,[
@@ -149,9 +158,9 @@  discard block
 block discarded – undo
149 158
                 $this->response->json(),
150 159
                 Contracts\Venda\CancelarVendaResponse::class
151 160
             );
152
-        }catch (RequestException $ex) {
161
+        } catch (RequestException $ex) {
153 162
             $this->requestException($ex);
154
-        }catch (\Exception $ex){
163
+        } catch (\Exception $ex){
155 164
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
156 165
         }
157 166
     }
Please login to merge, or discard this patch.
src/Integracao/ControlPay/Contracts/Pedido/GetByIdResponse.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Integracao\ControlPay\Contracts\Pedido;
4 4
 
5 5
 use Integracao\ControlPay\Helpers\SerializerHelper;
6
-use Integracao\ControlPay\Model\IntencaoVenda;
7 6
 use Integracao\ControlPay\Model\Pedido;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     {
64 64
         $this->pedido = $pedido;
65 65
 
66
-        if(is_array($this->pedido))
66
+        if (is_array($this->pedido))
67 67
             $this->pedido = SerializerHelper::denormalize($this->pedido, Pedido::class);
68 68
 
69 69
         return $this;
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,8 +63,9 @@
 block discarded – undo
63 63
     {
64 64
         $this->pedido = $pedido;
65 65
 
66
-        if(is_array($this->pedido))
67
-            $this->pedido = SerializerHelper::denormalize($this->pedido, Pedido::class);
66
+        if(is_array($this->pedido)) {
67
+                    $this->pedido = SerializerHelper::denormalize($this->pedido, Pedido::class);
68
+        }
68 69
 
69 70
         return $this;
70 71
     }
Please login to merge, or discard this patch.
src/Integracao/ControlPay/API/ProdutoApi.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function getByAtivosByPessoaId($pessoaId)
32 32
     {
33
-        try{
34
-            $this->response = $this->_httpClient->post(__FUNCTION__,[
33
+        try {
34
+            $this->response = $this->_httpClient->post(__FUNCTION__, [
35 35
                 'query' => $this->addQueryAdditionalParameters([
36 36
                     'pessoaId' => $pessoaId
37 37
                 ])
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
             );
44 44
         }catch (RequestException $ex) {
45 45
             $this->requestException($ex);
46
-        }catch (\Exception $ex){
46
+        }catch (\Exception $ex) {
47 47
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
48 48
         }
49 49
     }
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,9 +41,9 @@
 block discarded – undo
41 41
                 $this->response->json(),
42 42
                 Contracts\Produto\GetByAtivosByPessoaIdResponse::class
43 43
             );
44
-        }catch (RequestException $ex) {
44
+        } catch (RequestException $ex) {
45 45
             $this->requestException($ex);
46
-        }catch (\Exception $ex){
46
+        } catch (\Exception $ex){
47 47
             throw new \Exception($ex->getMessage(), $ex->getCode(), $ex);
48 48
         }
49 49
     }
Please login to merge, or discard this patch.
src/Integracao/ControlPay/Contracts/Terminal/InsertResponse.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     {
46 46
         $this->data = \DateTime::createFromFormat('d/m/Y H:i:s.u', $data);
47 47
 
48
-        if(!$this->data)
48
+        if (!$this->data)
49 49
             $this->data = \DateTime::createFromFormat('d/m/Y H:i:s', $data);
50 50
 
51 51
         return $this;
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     {
68 68
         $this->terminal = $terminal;
69 69
 
70
-        if(is_array($this->terminal))
70
+        if (is_array($this->terminal))
71 71
             $this->terminal = SerializerHelper::denormalize($this->terminal, Terminal::class);
72 72
 
73 73
         return $this;
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,8 +45,9 @@  discard block
 block discarded – undo
45 45
     {
46 46
         $this->data = \DateTime::createFromFormat('d/m/Y H:i:s.u', $data);
47 47
 
48
-        if(!$this->data)
49
-            $this->data = \DateTime::createFromFormat('d/m/Y H:i:s', $data);
48
+        if(!$this->data) {
49
+                    $this->data = \DateTime::createFromFormat('d/m/Y H:i:s', $data);
50
+        }
50 51
 
51 52
         return $this;
52 53
     }
@@ -67,8 +68,9 @@  discard block
 block discarded – undo
67 68
     {
68 69
         $this->terminal = $terminal;
69 70
 
70
-        if(is_array($this->terminal))
71
-            $this->terminal = SerializerHelper::denormalize($this->terminal, Terminal::class);
71
+        if(is_array($this->terminal)) {
72
+                    $this->terminal = SerializerHelper::denormalize($this->terminal, Terminal::class);
73
+        }
72 74
 
73 75
         return $this;
74 76
     }
Please login to merge, or discard this patch.
Integracao/ControlPay/Contracts/IntencaoVenda/GetByIntegracaoIdResponse.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
     {
63 63
 
64 64
         foreach ($intencoesVendas as $intencaoVenda)
65
-            $this->intencoesVendas[] = SerializerHelper::denormalize($intencaoVenda, IntencaoVenda::class);
65
+            $this->intencoesVendas[ ] = SerializerHelper::denormalize($intencaoVenda, IntencaoVenda::class);
66 66
 
67 67
         return $this;
68 68
     }
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,8 +61,9 @@
 block discarded – undo
61 61
     public function setIntencoesVendas($intencoesVendas)
62 62
     {
63 63
 
64
-        foreach ($intencoesVendas as $intencaoVenda)
65
-            $this->intencoesVendas[] = SerializerHelper::denormalize($intencaoVenda, IntencaoVenda::class);
64
+        foreach ($intencoesVendas as $intencaoVenda) {
65
+                    $this->intencoesVendas[] = SerializerHelper::denormalize($intencaoVenda, IntencaoVenda::class);
66
+        }
66 67
 
67 68
         return $this;
68 69
     }
Please login to merge, or discard this patch.
src/Integracao/ControlPay/Contracts/IntencaoVenda/GetByFiltrosResponse.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
     {
63 63
 
64 64
         foreach ($intencoesVendas as $intencaoVenda)
65
-            $this->intencoesVendas[] = SerializerHelper::denormalize($intencaoVenda, IntencaoVenda::class);
65
+            $this->intencoesVendas[ ] = SerializerHelper::denormalize($intencaoVenda, IntencaoVenda::class);
66 66
 
67 67
         return $this;
68 68
     }
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,8 +61,9 @@
 block discarded – undo
61 61
     public function setIntencoesVendas($intencoesVendas)
62 62
     {
63 63
 
64
-        foreach ($intencoesVendas as $intencaoVenda)
65
-            $this->intencoesVendas[] = SerializerHelper::denormalize($intencaoVenda, IntencaoVenda::class);
64
+        foreach ($intencoesVendas as $intencaoVenda) {
65
+                    $this->intencoesVendas[] = SerializerHelper::denormalize($intencaoVenda, IntencaoVenda::class);
66
+        }
66 67
 
67 68
         return $this;
68 69
     }
Please login to merge, or discard this patch.