1 | <?php |
||
14 | class StringArrayType implements Type |
||
15 | { |
||
16 | /** |
||
17 | * @see http://stackoverflow.com/a/19082849/1160901 |
||
18 | */ |
||
19 | const POSTGRES_SYNTAX_PATTERN = '/(?<=^\{|,)(([^,"{]*)|\s*"((?:[^"\\\\]|\\\\(?:.|[0-9]+|x[0-9a-f]+))*)"\s*)(,|(?<!^\{)(?=\}$))/iu'; |
||
20 | |||
21 | public function convertToSQL($value) |
||
41 | |||
42 | public function convertToPHP($value) |
||
62 | } |
||
63 |