@@ -47,14 +47,14 @@ |
||
| 47 | 47 | $key = $this->argument('key'); |
| 48 | 48 | |
| 49 | 49 | if (!is_null($key)) |
| 50 | - $this->isValidKey((string)$key); |
|
| 50 | + $this->isValidKey((string) $key); |
|
| 51 | 51 | |
| 52 | 52 | $env = new Env(); |
| 53 | - if (!$env->exists((string)$key)) |
|
| 53 | + if (!$env->exists((string) $key)) |
|
| 54 | 54 | $this->info("There is no variable {$key}"); |
| 55 | 55 | else |
| 56 | 56 | { |
| 57 | - $env->deleteVariable((string)$key); |
|
| 57 | + $env->deleteVariable((string) $key); |
|
| 58 | 58 | $this->info("Variable '{$key}' has been deleted"); |
| 59 | 59 | } |
| 60 | 60 | |
@@ -71,13 +71,13 @@ discard block |
||
| 71 | 71 | */ |
| 72 | 72 | public function handle() |
| 73 | 73 | { |
| 74 | - $this->key = (string)$this->argument('key'); |
|
| 74 | + $this->key = (string) $this->argument('key'); |
|
| 75 | 75 | |
| 76 | 76 | if (strlen($this->key)) |
| 77 | 77 | $this->isValidKey($this->key); |
| 78 | 78 | |
| 79 | - $this->json = (bool)$this->option('json'); |
|
| 80 | - $this->keyValFormat = (bool)$this->option('key-value'); |
|
| 79 | + $this->json = (bool) $this->option('json'); |
|
| 80 | + $this->keyValFormat = (bool) $this->option('key-value'); |
|
| 81 | 81 | $this->env = new Env(); |
| 82 | 82 | |
| 83 | 83 | return $this->_printOutput(); |
@@ -86,13 +86,13 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | private function _getEntireEnvContent() |
| 88 | 88 | { |
| 89 | - return ($this->json) ? json_encode($this->env->getVariables()) : $this->env->getEnvContent();; |
|
| 89 | + return ($this->json) ? json_encode($this->env->getVariables()) : $this->env->getEnvContent(); ; |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | private function _printKeyValue() |
| 93 | 93 | { |
| 94 | 94 | $value = ($this->json) ? json_encode($this->env->getKeyValue($this->key)) : ($this->keyValFormat ? $this->env->getKeyValue($this->key) : $this->env->getValue($this->key)); |
| 95 | - return($this->json) ? (string)$value : ($this->keyValFormat ? "{$this->key}={$value[$this->key]}" : (string)$value); |
|
| 95 | + return($this->json) ? (string) $value : ($this->keyValFormat ? "{$this->key}={$value[$this->key]}" : (string) $value); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | private function _printOutput() |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | public function handle() |
| 59 | 59 | { |
| 60 | 60 | |
| 61 | - $this->json = (bool)$this->option('json'); |
|
| 61 | + $this->json = (bool) $this->option('json'); |
|
| 62 | 62 | |
| 63 | 63 | $this->env = new Env(); |
| 64 | 64 | $this->line($this->_getEntireEnvContent()); |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | foreach ($env_lines as $line) |
| 29 | 29 | { |
| 30 | 30 | if (strlen(trim($line)) && !(strpos(trim($line), '#') === 0)) { |
| 31 | - [$key, $val] = explode('=', (string)$line); |
|
| 31 | + [$key, $val] = explode('=', (string) $line); |
|
| 32 | 32 | $this->_envVars[$key] = $this->_stripValue($val); |
| 33 | 33 | } |
| 34 | 34 | } |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | $value = $this->argument('value'); |
| 72 | 72 | |
| 73 | 73 | if (is_null($value) || !$value) { |
| 74 | - $parts = explode('=', (string)$key, 2); |
|
| 74 | + $parts = explode('=', (string) $key, 2); |
|
| 75 | 75 | |
| 76 | 76 | if (count($parts) !== 2) { |
| 77 | 77 | throw new InvalidArgumentException('No value was set'); |
@@ -80,15 +80,15 @@ discard block |
||
| 80 | 80 | [$key, $value] = $parts; |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - if (Str::contains((string)$key, '=')) { |
|
| 83 | + if (Str::contains((string) $key, '=')) { |
|
| 84 | 84 | throw new InvalidArgumentException("Environment key should not contain '='"); |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - if (!$this->isValidKey((string)$key)) { |
|
| 87 | + if (!$this->isValidKey((string) $key)) { |
|
| 88 | 88 | throw new InvalidArgumentException('Invalid argument key'); |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - return [(string)$key, (string)$value]; |
|
| 91 | + return [(string) $key, (string) $value]; |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | } |