mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-11 03:48:34 +02:00
Summary: Fixes T5409, bin/remove permanently destroys credential Test Plan: Add a passphrase, run bin/remove destroy K123 --trace, verify credential no longer exists Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T5409 Differential Revision: https://secure.phabricator.com/D10185
24 lines
436 B
PHP
24 lines
436 B
PHP
<?php
|
|
|
|
interface PhabricatorDestructibleInterface {
|
|
|
|
public function destroyObjectPermanently(
|
|
PhabricatorDestructionEngine $engine);
|
|
|
|
}
|
|
|
|
|
|
// TEMPLATE IMPLEMENTATION /////////////////////////////////////////////////////
|
|
|
|
|
|
/* -( PhabricatorDestructibleInterface )----------------------------------- */
|
|
/*
|
|
|
|
public function destroyObjectPermanently(
|
|
PhabricatorDestructionEngine $engine) {
|
|
|
|
<<<$this->nuke();>>>
|
|
|
|
}
|
|
|
|
*/
|