Explorar el Código

Update Installer.php

Shlee hace 5 años
padre
commit
2a82788ab0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      app/Console/Commands/Installer.php

+ 1 - 1
app/Console/Commands/Installer.php

@@ -221,7 +221,7 @@ class Installer extends Command
         $envPath = app()->environmentFilePath();
         $payload = file_get_contents($envPath);
 
-        if ($existing == $this->existingEnv($key, $payload)) {
+        if ($existing = $this->existingEnv($key, $payload)) {
             $payload = str_replace("{$key}={$existing}", "{$key}=\"{$value}\"", $payload);
             $this->storeEnv($payload);
         } else {