Changeset View
Changeset View
Standalone View
Standalone View
src/config/source/ArcanistDictionaryConfigurationSource.php
| Show All 23 Lines | if (!$this->hasValueForKey($key)) { | ||||
| 'Configuration source ("%s") has no value for key ("%s").', | 'Configuration source ("%s") has no value for key ("%s").', | ||||
| get_class($this), | get_class($this), | ||||
| $key)); | $key)); | ||||
| } | } | ||||
| return $this->values[$key]; | return $this->values[$key]; | ||||
| } | } | ||||
| public function setStorageValueForKey($key, $value) { | |||||
| $this->values[$key] = $value; | |||||
| $this->writeToStorage($this->values); | |||||
| return $this; | |||||
| } | |||||
| protected function writeToStorage($values) { | |||||
| throw new PhutilMethodNotImplementedException(); | |||||
| } | |||||
| } | } | ||||
| No newline at end of file | No newline at end of file | ||||