Page MenuHomec4science

DifferentialAffectedPath.php
No OneTemporary

File Metadata

Created
Wed, Apr 23, 17:40

DifferentialAffectedPath.php

<?php
/**
* Denormalized index table which stores relationships between revisions in
* Differential and paths in Diffusion.
*/
final class DifferentialAffectedPath extends DifferentialDAO {
protected $repositoryID;
protected $pathID;
protected $epoch;
protected $revisionID;
public function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
) + parent::getConfiguration();
}
}

Event Timeline