Page MenuHomec4science

PassphraseCredentialTransactionType.php
No OneTemporary

File Metadata

Created
Mon, Sep 23, 12:57

PassphraseCredentialTransactionType.php

<?php
abstract class PassphraseCredentialTransactionType
extends PhabricatorModularTransactionType {
public function destroySecret($secret_id) {
$table = new PassphraseSecret();
queryfx(
$table->establishConnection('w'),
'DELETE FROM %T WHERE id = %d',
$table->getTableName(),
$secret_id);
}
}

Event Timeline