Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | protected function _getFields() |
||
23 | { |
||
24 | return [ |
||
25 | ThreemaGateway_Model_Keystore::DB_TABLE => [ |
||
26 | 'threema_id' => [ |
||
27 | 'type' => self::TYPE_STRING, |
||
28 | 'required' => true, |
||
29 | 'maxLength' => 8 |
||
30 | ], |
||
31 | 'public_key' => [ |
||
32 | 'type' => self::TYPE_STRING, |
||
33 | 'required' => true, |
||
34 | 'maxLength' => 64 |
||
35 | ], |
||
36 | ] |
||
37 | ]; |
||
38 | } |
||
39 | |||
70 |