@@ -31,8 +31,8 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -70,7 +70,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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; |
@@ -42,19 +42,19 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | { |
| 221 | 221 | $this->pessoaVendedor = $pessoaVendedor; |
| 222 | 222 | |
| 223 | - if(is_array($this->pessoaVendedor)) |
|
| 223 | + if (is_array($this->pessoaVendedor)) |
|
| 224 | 224 | $this->pessoaVendedor = SerializerHelper::denormalize($this->pessoaVendedor, Pessoa::class); |
| 225 | 225 | |
| 226 | 226 | return $this; |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | { |
| 243 | 243 | $this->pessoaCliente = $pessoaCliente; |
| 244 | 244 | |
| 245 | - if(is_array($this->pessoaCliente)) |
|
| 245 | + if (is_array($this->pessoaCliente)) |
|
| 246 | 246 | $this->pessoaCliente = SerializerHelper::denormalize($this->pessoaCliente, Pessoa::class); |
| 247 | 247 | |
| 248 | 248 | return $this; |
@@ -264,7 +264,7 @@ discard block |
||
| 264 | 264 | { |
| 265 | 265 | $this->formaPagamento = $formaPagamento; |
| 266 | 266 | |
| 267 | - if(is_array($this->formaPagamento)) |
|
| 267 | + if (is_array($this->formaPagamento)) |
|
| 268 | 268 | $this->formaPagamento = SerializerHelper::denormalize($this->formaPagamento, FormaPagamento::class); |
| 269 | 269 | |
| 270 | 270 | return $this; |
@@ -286,7 +286,7 @@ discard block |
||
| 286 | 286 | { |
| 287 | 287 | $this->terminal = $terminal; |
| 288 | 288 | |
| 289 | - if(is_array($this->terminal)) |
|
| 289 | + if (is_array($this->terminal)) |
|
| 290 | 290 | $this->terminal = SerializerHelper::denormalize($this->terminal, Terminal::class); |
| 291 | 291 | |
| 292 | 292 | return $this; |
@@ -308,7 +308,7 @@ discard block |
||
| 308 | 308 | { |
| 309 | 309 | $this->pedido = $pedido; |
| 310 | 310 | |
| 311 | - if(is_array($this->pedido)) |
|
| 311 | + if (is_array($this->pedido)) |
|
| 312 | 312 | $this->pedido = SerializerHelper::denormalize($this->pedido, Pedido::class); |
| 313 | 313 | |
| 314 | 314 | return $this; |
@@ -330,7 +330,7 @@ discard block |
||
| 330 | 330 | { |
| 331 | 331 | $this->operador = $operador; |
| 332 | 332 | |
| 333 | - if(is_array($this->operador)) |
|
| 333 | + if (is_array($this->operador)) |
|
| 334 | 334 | $this->operador = SerializerHelper::denormalize($this->operador, Operador::class); |
| 335 | 335 | |
| 336 | 336 | return $this; |
@@ -352,7 +352,7 @@ discard block |
||
| 352 | 352 | { |
| 353 | 353 | $this->contaRecebimentoLancamento = $contaRecebimentoLancamento; |
| 354 | 354 | |
| 355 | - if(is_array($this->contaRecebimentoLancamento)) |
|
| 355 | + if (is_array($this->contaRecebimentoLancamento)) |
|
| 356 | 356 | $this->contaRecebimentoLancamento = SerializerHelper::denormalize($this->contaRecebimentoLancamento, ContaRecebimentoLancamento::class); |
| 357 | 357 | |
| 358 | 358 | return $this; |
@@ -374,7 +374,7 @@ discard block |
||
| 374 | 374 | { |
| 375 | 375 | $this->pagamentoRecorrenteLancamento = $pagamentoRecorrenteLancamento; |
| 376 | 376 | |
| 377 | - if(is_array($this->pagamentoRecorrenteLancamento)) |
|
| 377 | + if (is_array($this->pagamentoRecorrenteLancamento)) |
|
| 378 | 378 | $this->pagamentoRecorrenteLancamento = SerializerHelper::denormalize($this->pagamentoRecorrenteLancamento, PagamentoRecorrenteLancamento::class); |
| 379 | 379 | |
| 380 | 380 | return $this; |
@@ -396,7 +396,7 @@ discard block |
||
| 396 | 396 | { |
| 397 | 397 | $this->intencaoVendaStatus = $intencaoVendaStatus; |
| 398 | 398 | |
| 399 | - if(is_array($this->intencaoVendaStatus)) |
|
| 399 | + if (is_array($this->intencaoVendaStatus)) |
|
| 400 | 400 | $this->intencaoVendaStatus = SerializerHelper::denormalize($this->intencaoVendaStatus, IntencaoVendaStatus::class); |
| 401 | 401 | |
| 402 | 402 | return $this; |
@@ -454,7 +454,7 @@ discard block |
||
| 454 | 454 | { |
| 455 | 455 | $this->data = \DateTime::createFromFormat('d/m/Y H:i:s.u', $data); |
| 456 | 456 | |
| 457 | - if(!$this->data) |
|
| 457 | + if (!$this->data) |
|
| 458 | 458 | $this->data = \DateTime::createFromFormat('d/m/Y H:i:s', $data); |
| 459 | 459 | |
| 460 | 460 | return $this; |
@@ -638,9 +638,9 @@ discard block |
||
| 638 | 638 | { |
| 639 | 639 | //$this->itemProdutos = $itemProdutos; |
| 640 | 640 | |
| 641 | - if(is_array($itemProdutos)) |
|
| 641 | + if (is_array($itemProdutos)) |
|
| 642 | 642 | foreach ($itemProdutos as $itemProduto) { |
| 643 | - $this->itemProdutos[] = SerializerHelper::denormalize( |
|
| 643 | + $this->itemProdutos[ ] = SerializerHelper::denormalize( |
|
| 644 | 644 | $itemProduto, ItemProduto::class); |
| 645 | 645 | } |
| 646 | 646 | |
@@ -661,9 +661,9 @@ discard block |
||
| 661 | 661 | */ |
| 662 | 662 | public function setPagamentosExterno($pagamentosExterno) |
| 663 | 663 | { |
| 664 | - if(is_array($pagamentosExterno)) |
|
| 664 | + if (is_array($pagamentosExterno)) |
|
| 665 | 665 | foreach ($pagamentosExterno as $pagamentoExterno) { |
| 666 | - $this->pagamentosExterno[] = SerializerHelper::denormalize( |
|
| 666 | + $this->pagamentosExterno[ ] = SerializerHelper::denormalize( |
|
| 667 | 667 | $pagamentoExterno, PagamentoExterno::class); |
| 668 | 668 | } |
| 669 | 669 | |
@@ -685,9 +685,9 @@ discard block |
||
| 685 | 685 | public function setProdutos($produtos) |
| 686 | 686 | { |
| 687 | 687 | |
| 688 | - if(is_array($produtos)) |
|
| 688 | + if (is_array($produtos)) |
|
| 689 | 689 | foreach ($produtos as $produto) { |
| 690 | - $this->produtos[] = SerializerHelper::denormalize( |
|
| 690 | + $this->produtos[ ] = SerializerHelper::denormalize( |
|
| 691 | 691 | $produto, ItemProduto::class); |
| 692 | 692 | } |
| 693 | 693 | |
@@ -818,7 +818,7 @@ discard block |
||
| 818 | 818 | { |
| 819 | 819 | $this->vendedor = $vendedor; |
| 820 | 820 | |
| 821 | - if(is_array($this->vendedor)) |
|
| 821 | + if (is_array($this->vendedor)) |
|
| 822 | 822 | $this->vendedor = SerializerHelper::denormalize($this->pessoaVendedor, Pessoa::class); |
| 823 | 823 | |
| 824 | 824 | return $this; |
@@ -856,9 +856,9 @@ discard block |
||
| 856 | 856 | */ |
| 857 | 857 | public function setPagamentosExternos($pagamentosExternos) |
| 858 | 858 | { |
| 859 | - if(is_array($pagamentosExternos)) |
|
| 859 | + if (is_array($pagamentosExternos)) |
|
| 860 | 860 | foreach ($pagamentosExternos as $pagamentoExterno) { |
| 861 | - $this->pagamentosExternos[] = SerializerHelper::denormalize( |
|
| 861 | + $this->pagamentosExternos[ ] = SerializerHelper::denormalize( |
|
| 862 | 862 | $pagamentoExterno, PagamentoExterno::class); |
| 863 | 863 | } |
| 864 | 864 | |
@@ -30,8 +30,8 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public function getByFiltros(Contracts\PagamentoExterno\GetByFiltrosRequest $getByFiltrosRequest) |
| 32 | 32 | { |
| 33 | - try{ |
|
| 34 | - $this->response = $this->_httpClient->post(__FUNCTION__,[ |
|
| 33 | + try { |
|
| 34 | + $this->response = $this->_httpClient->post(__FUNCTION__, [ |
|
| 35 | 35 | 'body' => json_encode($getByFiltrosRequest), |
| 36 | 36 | ]); |
| 37 | 37 | |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | ); |
| 42 | 42 | }catch (RequestException $ex) { |
| 43 | 43 | $this->requestException($ex); |
| 44 | - }catch (\Exception $ex){ |
|
| 44 | + }catch (\Exception $ex) { |
|
| 45 | 45 | throw new \Exception($ex->getMessage(), $ex->getCode(), $ex); |
| 46 | 46 | } |
| 47 | 47 | } |