1 | <?php |
||
25 | class PgString implements ConverterInterface |
||
26 | { |
||
27 | /** |
||
28 | * toPg |
||
29 | * |
||
30 | * @see ConverterInterface |
||
31 | */ |
||
32 | public function toPg($data, $type, Session $session) |
||
38 | |||
39 | /** |
||
40 | * toPgStandardFormat |
||
41 | * |
||
42 | * @see ConverterInterface |
||
43 | */ |
||
44 | public function toPgStandardFormat($data, $type, Session $session) |
||
48 | |||
49 | /** |
||
50 | * @see ConverterInterface |
||
51 | */ |
||
52 | public function fromPg($data, $type, Session $session) |
||
56 | } |
||
57 |