Page MenuHomec4science

PhabricatorProjectTransaction.php
No OneTemporary

File Metadata

Created
Mon, Jun 23, 07:20

PhabricatorProjectTransaction.php

<?php
/**
* @group project
*/
final class PhabricatorProjectTransaction extends PhabricatorProjectDAO {
protected $projectID;
protected $authorPHID;
protected $transactionType;
protected $oldValue;
protected $newValue;
public function getConfiguration() {
return array(
self::CONFIG_SERIALIZATION => array(
'oldValue' => self::SERIALIZATION_JSON,
'newValue' => self::SERIALIZATION_JSON,
),
) + parent::getConfiguration();
}
}

Event Timeline