isProtected()) return false; $input = trim($input); $value = $this->local ?? $this->default; if ($value == $input) return false; if ($input && !file_exists($input)) { $this->error = true; $this->input = $input; return false; } $this->local = $input; return true; } }