Lines Matching defs:default
15 /** @var mixed the default value of this setting */
16 protected $default;
58 * @param mixed $default default setting value
62 public function initialize($default = null, $local = null, $protected = null)
64 $this->default = $this->cleanValue($default);
83 $value = is_null($this->local) ? $this->default : $this->local;
117 * Should this type of config have a default?
207 $value = is_null($this->local) ? $this->default : $this->local;
229 if ($this->default == $this->local) return false;
292 * Is setting the default?