Viewing File: /home/ubuntu/code_review/phabricator/src/applications/passphrase/storage/PassphraseSecret.php

<?php

final class PassphraseSecret extends PassphraseDAO {

  protected $secretData;

  protected function getConfiguration() {
    return array(
      self::CONFIG_TIMESTAMPS => false,
      self::CONFIG_BINARY => array(
        'secretData' => true,
      ),
    ) + parent::getConfiguration();
  }

}
Back to Directory File Manager