Page MenuHomec4science

PhabricatorSystemActionLog.php
No OneTemporary

File Metadata

Created
Wed, May 28, 21:22

PhabricatorSystemActionLog.php

<?php
final class PhabricatorSystemActionLog extends PhabricatorSystemDAO {
protected $actorHash;
protected $actorIdentity;
protected $action;
protected $score;
protected $epoch;
public function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
) + parent::getConfiguration();
}
public function setActorIdentity($identity) {
$this->setActorHash(PhabricatorHash::digestForIndex($identity));
return parent::setActorIdentity($identity);
}
}

Event Timeline