We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ed2df8 commit ccfdc97Copy full SHA for ccfdc97
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