Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clear the cached config file after writing to the .env file #4261

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
use CachetHQ\Cachet\Bus\Commands\System\Config\UpdateConfigCommand;
use Dotenv\Dotenv;
use Dotenv\Exception\InvalidPathException;
use Illuminate\Filesystem\Filesystem;

/**
* This is the update config command handler class.
Expand All @@ -22,6 +23,25 @@
*/
class UpdateConfigCommandHandler
{
/**
* The filesystem instance.
*
* @var \Illuminate\Filesystem\Filesystem
*/
protected $files;

/**
* Create a new update config command handler instance.
*
* @param \Illuminate\Filesystem\Filesystem $files
*
* @return void
*/
public function __construct(Filesystem $files)
{
$this->files = $files;
}

/**
* Handle update config command handler instance.
*
Expand All @@ -34,6 +54,11 @@ public function handle(UpdateConfigCommand $command)
foreach ($command->values as $setting => $value) {
$this->writeEnv($setting, $value);
}

// Clears the cached config file like artisan config:clear does.
if (app()->configurationIsCached()) {
$this->files->delete(app()->getCachedConfigPath());
}
}

/**
Expand Down