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