mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-02 23:49:19 +01:00
18 lines
348 B
PHP
18 lines
348 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorSystemDestructionLog extends PhabricatorSystemDAO {
|
||
|
|
||
|
protected $objectClass;
|
||
|
protected $rootLogID;
|
||
|
protected $objectPHID;
|
||
|
protected $objectMonogram;
|
||
|
protected $epoch;
|
||
|
|
||
|
public function getConfiguration() {
|
||
|
return array(
|
||
|
self::CONFIG_TIMESTAMPS => false,
|
||
|
) + parent::getConfiguration();
|
||
|
}
|
||
|
|
||
|
}
|