コード例 #1
0
 /**
  * Proxy to SettingsManager::all
  *
  * @param SettingsOwnerInterface|null $owner
  *
  * @return array
  */
 public function getAllSettings(SettingsOwnerInterface $owner = null)
 {
     return $this->settingsManager->all($owner);
 }
コード例 #2
0
 /**
  * {@inheritdoc}
  */
 public function clear($name, SettingsOwnerInterface $owner = null)
 {
     $this->invalidateCache($name, $owner);
     return $this->settingsManager->clear($name, $owner);
 }