1 | <?php |
||
22 | class IriHandler extends DataValueHandler { |
||
23 | |||
24 | /** |
||
25 | * @var StringHasher|null |
||
26 | */ |
||
27 | private $stringHasher = null; |
||
28 | |||
29 | /** |
||
30 | * @see DataValueHandler::getBaseTableName |
||
31 | * |
||
32 | * @return string |
||
33 | */ |
||
34 | protected function getBaseTableName() { |
||
37 | |||
38 | /** |
||
39 | * @see DataValueHandler::completeTable |
||
40 | * |
||
41 | * @param Table $table |
||
42 | */ |
||
43 | protected function completeTable( Table $table ) { |
||
54 | |||
55 | /** |
||
56 | * @see DataValueHandler::getInsertValues |
||
57 | * |
||
58 | * @param DataValue $value |
||
59 | * |
||
60 | * @throws InvalidArgumentException |
||
61 | * @return string[] |
||
62 | */ |
||
63 | public function getInsertValues( DataValue $value ) { |
||
79 | |||
80 | /** |
||
81 | * @see DataValueHandler::getEqualityFieldValue |
||
82 | * |
||
83 | * @param DataValue $value |
||
84 | * |
||
85 | * @throws InvalidArgumentException |
||
86 | * @return string |
||
87 | */ |
||
88 | public function getEqualityFieldValue( DataValue $value ) { |
||
95 | |||
96 | private function hash( $string ) { |
||
103 | |||
104 | } |
||
105 |