@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | { |
| 69 | 69 | $this->pessoa = $pessoa; |
| 70 | 70 | |
| 71 | - if(is_array($pessoa)) |
|
| 71 | + if (is_array($pessoa)) |
|
| 72 | 72 | $this->pessoa = SerializerHelper::denormalize($this->pessoa, Pessoa::class); |
| 73 | 73 | |
| 74 | 74 | return $this; |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | { |
| 91 | 91 | $this->operador = $operador; |
| 92 | 92 | |
| 93 | - if(is_array($this->operador)) |
|
| 93 | + if (is_array($this->operador)) |
|
| 94 | 94 | $this->operador = SerializerHelper::denormalize($this->operador, Operador::class); |
| 95 | 95 | |
| 96 | 96 | return $this; |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | { |
| 63 | 63 | $this->intencaoVenda = $intencaoVenda; |
| 64 | 64 | |
| 65 | - if(is_array($this->intencaoVenda)) |
|
| 65 | + if (is_array($this->intencaoVenda)) |
|
| 66 | 66 | $this->intencaoVenda = SerializerHelper::denormalize($this->intencaoVenda, IntencaoVenda::class); |
| 67 | 67 | |
| 68 | 68 | return $this; |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | { |
| 45 | 45 | $this->data = \DateTime::createFromFormat('d/m/Y H:i:s.u', $data); |
| 46 | 46 | |
| 47 | - if(!$this->data) |
|
| 47 | + if (!$this->data) |
|
| 48 | 48 | $this->data = \DateTime::createFromFormat('d/m/Y H:i:s', $data); |
| 49 | 49 | |
| 50 | 50 | return $this; |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | { |
| 67 | 67 | |
| 68 | 68 | foreach ($pagamentosExterno as $item) |
| 69 | - $this->pagamentosExterno[] = SerializerHelper::denormalize($item, PagamentoExterno::class); |
|
| 69 | + $this->pagamentosExterno[ ] = SerializerHelper::denormalize($item, PagamentoExterno::class); |
|
| 70 | 70 | |
| 71 | 71 | return $this; |
| 72 | 72 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 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; |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | public function setTerminais($terminais) |
| 67 | 67 | { |
| 68 | 68 | foreach ($terminais as $item) |
| 69 | - $this->terminais[] = SerializerHelper::denormalize($item, Terminal::class); |
|
| 69 | + $this->terminais[ ] = SerializerHelper::denormalize($item, Terminal::class); |
|
| 70 | 70 | |
| 71 | 71 | return $this; |
| 72 | 72 | } |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | { |
| 93 | 93 | $this->impressora = $impressora; |
| 94 | 94 | |
| 95 | - if(is_array($this->impressora)) |
|
| 95 | + if (is_array($this->impressora)) |
|
| 96 | 96 | $this->impressora = SerializerHelper::denormalize($this->impressora, Impressora::class); |
| 97 | 97 | |
| 98 | 98 | return $this; |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | { |
| 115 | 115 | $this->pessoa = $pessoa; |
| 116 | 116 | |
| 117 | - if(is_array($this->pessoa)) |
|
| 117 | + if (is_array($this->pessoa)) |
|
| 118 | 118 | $this->pessoa = SerializerHelper::denormalize($this->pessoa, Pessoa::class); |
| 119 | 119 | |
| 120 | 120 | return $this; |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | { |
| 45 | 45 | $this->data = \DateTime::createFromFormat('d/m/Y H:i:s.u', $data); |
| 46 | 46 | |
| 47 | - if(!$this->data) |
|
| 47 | + if (!$this->data) |
|
| 48 | 48 | $this->data = \DateTime::createFromFormat('d/m/Y H:i:s', $data); |
| 49 | 49 | |
| 50 | 50 | return $this; |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | { |
| 67 | 67 | $this->terminal = $terminal; |
| 68 | 68 | |
| 69 | - if(is_array($this->terminal)) |
|
| 69 | + if (is_array($this->terminal)) |
|
| 70 | 70 | $this->terminal = SerializerHelper::denormalize($this->terminal, Terminal::class); |
| 71 | 71 | |
| 72 | 72 | return $this; |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | { |
| 45 | 45 | $this->data = \DateTime::createFromFormat('d/m/Y H:i:s.u', $data); |
| 46 | 46 | |
| 47 | - if(!$this->data) |
|
| 47 | + if (!$this->data) |
|
| 48 | 48 | $this->data = \DateTime::createFromFormat('d/m/Y H:i:s', $data); |
| 49 | 49 | |
| 50 | 50 | return $this; |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | { |
| 67 | 67 | |
| 68 | 68 | foreach ($produtos as $item) |
| 69 | - $this->produtos[] = SerializerHelper::denormalize($item, Produto::class); |
|
| 69 | + $this->produtos[ ] = SerializerHelper::denormalize($item, Produto::class); |
|
| 70 | 70 | |
| 71 | 71 | return $this; |
| 72 | 72 | } |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | */ |
| 53 | 53 | public function getAuthorization() |
| 54 | 54 | { |
| 55 | - if(!empty($this->key)) |
|
| 55 | + if (!empty($this->key)) |
|
| 56 | 56 | return $this->key; |
| 57 | 57 | |
| 58 | 58 | $response = $this->_loginApi->login( |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | { |
| 93 | 93 | $this->impressora = $impressora; |
| 94 | 94 | |
| 95 | - if(is_array($this->impressora)) |
|
| 95 | + if (is_array($this->impressora)) |
|
| 96 | 96 | $this->impressora = SerializerHelper::denormalize($this->impressora, Impressora::class); |
| 97 | 97 | |
| 98 | 98 | return $this; |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | { |
| 115 | 115 | $this->pessoa = $pessoa; |
| 116 | 116 | |
| 117 | - if(is_array($this->pessoa)) |
|
| 117 | + if (is_array($this->pessoa)) |
|
| 118 | 118 | $this->pessoa = SerializerHelper::denormalize($this->pessoa, Pessoa::class); |
| 119 | 119 | |
| 120 | 120 | return $this; |