finished!
[mdref/mdref-pq] / pq / Converter / convertTypes.md
1 # array pq\Converter::convertTypes()
2
3 Announce which types the implementing converter can handle.
4
5 ## Params:
6
7 None.
8
9 ## Returns:
10
11 * array, OIDs of handled types.
12
13 ## Example:
14
15 <?php
16
17 abstract class Example implements pq\Converter {
18 function convertTypes() {
19 return [pq\Types::UUID];
20 }
21 }
22
23 ?>