Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Test_EncryptionKey extends DataObject implements TestOnly |
||
14 | { |
||
15 | private static $table_name = 'EncryptionKey'; |
||
|
|||
16 | |||
17 | private static $db = [ |
||
18 | "EncryptionKey" => 'Varchar', |
||
19 | ]; |
||
20 | |||
21 | private static $has_one = [ |
||
22 | "Member" => File::class, |
||
23 | ]; |
||
24 | |||
25 | public static function getForMember($ID) |
||
31 |