Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Mysql |
||
8 | { |
||
9 | public const OPTION_EMPTY = 0; |
||
10 | public const OPTION_PREFER_DATE = 1; |
||
11 | |||
12 | /** |
||
13 | * @param $value |
||
14 | * @param int $type |
||
15 | * @param int $option |
||
16 | * |
||
17 | * @return string[] |
||
18 | */ |
||
19 | public static function nullableParam($value, int $type = \PDO::PARAM_STR, int $option = self::OPTION_EMPTY): array |
||
36 |