| Total Complexity | 13 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class StringArrayType implements Type |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @see http://stackoverflow.com/a/19082849/1160901 |
||
| 19 | */ |
||
| 20 | const POSTGRES_SYNTAX_PATTERN = '/(?<=^\{|,)(([^,"{]*)|\s*"((?:[^"\\\\]|\\\\(?:.|[0-9]+|x[0-9a-f]+))*)"\s*)(,|(?<!^\{)(?=\}$))/iu'; |
||
| 21 | |||
| 22 | public function convertToSQL($value): string |
||
| 41 | } |
||
| 42 | |||
| 43 | public function convertToPHP($value) |
||
| 68 |