| 1 | <?php |
||
| 11 | class ThreemaGateway_Model_Keystore extends XenForo_Model |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string database table name |
||
| 15 | */ |
||
| 16 | const DB_TABLE = 'xf_threemagw_keystore'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Find public key. Returns false if the public key is not found in the |
||
| 20 | * store. |
||
| 21 | * |
||
| 22 | * @param string $threemaId |
||
| 23 | * |
||
| 24 | * @return null|string |
||
| 25 | */ |
||
| 26 | public function findPublicKey($threemaId) |
||
| 41 | } |
||
| 42 |