/**
  * @param string $name
  * @param int|null $owner
  * @param null|string $group
  * @return mixed|null
  */
 public function hasSetting($name, $owner = null, $group = null)
 {
     return $this->settings->has($name, $owner, $group);
 }