mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-24 05:28:18 +01:00
14 lines
227 B
PHP
14 lines
227 B
PHP
|
<?php
|
||
|
|
||
|
final class PassphraseSecret extends PassphraseDAO {
|
||
|
|
||
|
protected $secretData;
|
||
|
|
||
|
public function getConfiguration() {
|
||
|
return array(
|
||
|
self::CONFIG_TIMESTAMPS => false,
|
||
|
) + parent::getConfiguration();
|
||
|
}
|
||
|
|
||
|
}
|