value = ($value === null) ? $default : (bool) $value; } /** @return bool */ public function value() { return $this->value; } /** @return string */ public function asAttr() { return $this->value ? 'true' : 'false'; } }