We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I can't seem to update value in a file, what am I doing wrong?
<?php use Noodlehaus\Config as Config; $config = Config::load($app->config('base_path') . '/config/config.yaml'); $next_number = $config->get('accounting.next_number'); $new_number = ++$next_number; $config->set('accounting.next_number', $new_number);
I can return the get value so the file is readable etc. But it wont update the value in the file.
The text was updated successfully, but these errors were encountered:
By design, Config won't overwrite a text file, it will only overwrite that value in-memory.
Sorry, something went wrong.
Merge pull request hassankhan#23 from PhpGt/dependabot/composer/phpun…
8c22616
…it/phpunit-7.3.4 Bump phpunit/phpunit from 7.3.3 to 7.3.4
No branches or pull requests
I can't seem to update value in a file, what am I doing wrong?
I can return the get value so the file is readable etc. But it wont update the value in the file.
The text was updated successfully, but these errors were encountered: