1 | <?php |
||
27 | class PgCircle extends TypeConverter |
||
28 | { |
||
29 | protected $point_converter; |
||
30 | |||
31 | /** |
||
32 | * getTypeClassName |
||
33 | * |
||
34 | * Circle class name |
||
35 | * |
||
36 | * @see TypeConverter |
||
37 | */ |
||
38 | protected function getTypeClassName() |
||
42 | |||
43 | /** |
||
44 | * toPg |
||
45 | * |
||
46 | * @see ConverterInterface |
||
47 | */ |
||
48 | public function toPg($data, $type, Session $session) |
||
66 | |||
67 | /** |
||
68 | * getPointConverter |
||
69 | * |
||
70 | * Cache the point converter. |
||
71 | * |
||
72 | * @param Session $session |
||
73 | * @return ConverterInterface |
||
74 | */ |
||
75 | protected function getPointConverter(Session $session) |
||
84 | } |
||
85 |