Info comments for DB\IO convert options

This commit is contained in:
Clemens Schwaighofer
2023-06-13 11:47:38 +09:00
parent 9c3be2942e
commit 80b8328002

View File

@@ -19,10 +19,15 @@ namespace CoreLibs\DB\Options;
enum Convert: int
{
/** do not convert */
case off = 0;
/** convert only int/bool */
case on = 1;
/** also convert json to php array */
case json = 2;
/** also convert any float/real/numeric to php float */
case numeric = 4;
/** also decode bytea string to php string */
case bytea = 8;
/**