1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-03 02:18:24 +01:00
phorge-phorge/src/applications/passphrase/storage/PassphraseSecret.php

17 lines
302 B
PHP
Raw Normal View History

<?php
final class PassphraseSecret extends PassphraseDAO {
protected $secretData;
public function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_BINARY => array(
'secretData' => true,
),
) + parent::getConfiguration();
}
}