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