/** * Converts a boolean value into a string, as "true" for `true` and as "false" for `false`. * * @param bool $value The value to be converted. * * @return CUStringObject "true" for `true`, "false" for `false`. */ public static function fromBoolTf($value) { return CUString::fromBoolTf($value); }