From 96d58d8ad380f8700f48f96a484e96806544f854 Mon Sep 17 00:00:00 2001 From: Nick Harper Date: Tue, 13 Sep 2011 21:07:57 -0700 Subject: [PATCH] Fixed documentation in PhabricatorProjectSubproject Summary: Changed the documentation to describe the project-subproject join table instead of the task-project join table. Test Plan: none Reviewers: epriestley, cadamo CC: Differential Revision: 927 --- .../subproject/PhabricatorProjectSubproject.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/applications/project/storage/subproject/PhabricatorProjectSubproject.php b/src/applications/project/storage/subproject/PhabricatorProjectSubproject.php index 43832e7275..2f0c62a9db 100644 --- a/src/applications/project/storage/subproject/PhabricatorProjectSubproject.php +++ b/src/applications/project/storage/subproject/PhabricatorProjectSubproject.php @@ -17,13 +17,12 @@ */ /** - * This is a DAO for the Task -> Project table, which denormalizes the - * relationship between tasks and projects into a link table so it can be - * efficiently queried. This table is not authoritative; the projectPHIDs field - * of ManiphestTask is. The rows in this table are regenerated when transactions - * are applied to tasks which affected their associated projects. - * - * @group maniphest + * This is a DAO for the Project -> subproject table, which + * denormalizes the relationship between projects and subprojects into + * a link table so it can be efficiently queried. This table is not + * authoritative; the subprojectPHIDs field of PhabricatorProject is. + * The rows in this table are regenerated when subprojects of a project + * are updated. */ final class PhabricatorProjectSubproject extends PhabricatorProjectDAO {