Merge pull request #44039 from Dreamsorcerer/patch-2

pull/44745/head
Benjamin Gaussorgues 1 month ago committed by GitHub
commit 4af9bef712
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -153,8 +153,6 @@ class Config {
* @throws HintException
*/
protected function set($key, $value) {
$this->checkReadOnly();
if (!isset($this->cache[$key]) || $this->cache[$key] !== $value) {
// Add change
$this->cache[$key] = $value;
@ -185,8 +183,6 @@ class Config {
* @throws HintException
*/
protected function delete($key) {
$this->checkReadOnly();
if (isset($this->cache[$key])) {
// Delete key from cache
unset($this->cache[$key]);

Loading…
Cancel
Save