| @@ -44,7 +44,7 @@ discard block | ||
| 44 | 44 | if(is_null($client)) | 
| 45 | 45 |          { | 
| 46 | 46 | $this->client = new Client(); | 
| 47 | -        }else{ | |
| 47 | +        } else{ | |
| 48 | 48 | $this->client = $client; | 
| 49 | 49 | } | 
| 50 | 50 | |
| @@ -62,7 +62,7 @@ discard block | ||
| 62 | 62 | $this->tipo) | 
| 63 | 63 | ); | 
| 64 | 64 | return $this->getResponse(); | 
| 65 | -        }catch(\Exception $ex){ | |
| 65 | +        } catch(\Exception $ex){ | |
| 66 | 66 |              $this->logger->error("Falha ao executar requisição", $ex); | 
| 67 | 67 | throw new \Exception($ex->getMessage()); | 
| 68 | 68 | } | 
| @@ -83,7 +83,7 @@ discard block | ||
| 83 | 83 | $fabricante) | 
| 84 | 84 | ); | 
| 85 | 85 | return $this->getResponse(); | 
| 86 | -        }catch(\Exception $ex){ | |
| 86 | +        } catch(\Exception $ex){ | |
| 87 | 87 |              $this->logger->error("Falha ao executar requisição", $ex); | 
| 88 | 88 | throw new \Exception($ex->getMessage()); | 
| 89 | 89 | } | 
| @@ -106,7 +106,7 @@ discard block | ||
| 106 | 106 | $veiculo) | 
| 107 | 107 | ); | 
| 108 | 108 | return $this->getResponse(); | 
| 109 | -        }catch(\Exception $ex){ | |
| 109 | +        } catch(\Exception $ex){ | |
| 110 | 110 |              $this->logger->error("Falha ao executar requisição", $ex); | 
| 111 | 111 | throw new \Exception($ex->getMessage()); | 
| 112 | 112 | } | 
| @@ -123,7 +123,7 @@ discard block | ||
| 123 | 123 | $fipeCodigo) | 
| 124 | 124 | ); | 
| 125 | 125 | return $this->getResponse(); | 
| 126 | -        }catch(\Exception $ex){ | |
| 126 | +        } catch(\Exception $ex){ | |
| 127 | 127 |              $this->logger->error("Falha ao executar requisição", $ex); | 
| 128 | 128 | throw new \Exception($ex->getMessage()); | 
| 129 | 129 | } | 
| @@ -34,17 +34,19 @@ | ||
| 34 | 34 |          { | 
| 35 | 35 | foreach ($params as $key => $param) | 
| 36 | 36 |              { | 
| 37 | - if(!in_array($key, array_keys($params))) | |
| 38 | -                    throw new \Exception(sprintf("Parâmetro %s inválido", $key)); | |
| 37 | +                if(!in_array($key, array_keys($params))) { | |
| 38 | +                                    throw new \Exception(sprintf("Parâmetro %s inválido", $key)); | |
| 39 | + } | |
| 39 | 40 | } | 
| 40 | 41 | } | 
| 41 | 42 | |
| 42 | 43 |          putenv(sprintf("%s=%s", FipeApiParameter::FIPE_API_HOST, Client::DEFAULT_URL)); | 
| 43 | 44 |          putenv(sprintf("%s=%s", FipeApiParameter::FIPE_API_TIMEOUT, Client::DEFAULT_TIMEOUT)); | 
| 44 | 45 | |
| 45 | - if(!is_null($params) && is_array($params)) | |
| 46 | - foreach ($params as $key => $value) | |
| 46 | +        if(!is_null($params) && is_array($params)) { | |
| 47 | + foreach ($params as $key => $value) | |
| 47 | 48 |                  putenv(sprintf("%s=%s",$key,$value)); | 
| 49 | + } | |
| 48 | 50 | |
| 49 | 51 | } | 
| 50 | 52 | |