We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 146675b commit 37b517fCopy full SHA for 37b517f
lib/private/Config.php
@@ -153,8 +153,6 @@ public function setValue($key, $value) {
153
* @throws HintException
154
*/
155
protected function set($key, $value) {
156
- $this->checkReadOnly();
157
-
158
if (!isset($this->cache[$key]) || $this->cache[$key] !== $value) {
159
// Add change
160
$this->cache[$key] = $value;
@@ -185,8 +183,6 @@ public function deleteKey($key) {
185
183
186
184
187
protected function delete($key) {
188
189
190
if (isset($this->cache[$key])) {
191
// Delete key from cache
192
unset($this->cache[$key]);
0 commit comments