mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-01 06:59:15 +01:00
22 lines
454 B
PHP
22 lines
454 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Denormalized index table which stores relationships between revisions in
|
||
|
* Differential and paths in Diffusion.
|
||
|
*
|
||
|
* @group differential
|
||
|
*/
|
||
|
final class DifferentialAffectedPath extends DifferentialDAO {
|
||
|
|
||
|
protected $repositoryID;
|
||
|
protected $pathID;
|
||
|
protected $epoch;
|
||
|
protected $revisionID;
|
||
|
|
||
|
public function getConfiguration() {
|
||
|
return array(
|
||
|
self::CONFIG_TIMESTAMPS => false,
|
||
|
) + parent::getConfiguration();
|
||
|
}
|
||
|
}
|