@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3interface PhabricatorDestructibleInterface {
4
5 public function destroyObjectPermanently(
6 PhabricatorDestructionEngine $engine);
7
8}
9
10
11// TEMPLATE IMPLEMENTATION /////////////////////////////////////////////////////
12
13
14/* -( PhabricatorDestructibleInterface )----------------------------------- */
15/*
16
17 public function destroyObjectPermanently(
18 PhabricatorDestructionEngine $engine) {
19
20 <<<$this->nuke();>>>
21
22 }
23
24*/