Differential D20467 Diff 48843 src/applications/repository/worker/commitchangeparser/PhabricatorRepositoryCommitChangeParserWorker.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/repository/worker/commitchangeparser/PhabricatorRepositoryCommitChangeParserWorker.php
| Show First 20 Lines • Show All 96 Lines • ▼ Show 20 Lines | private static function lookupPaths(array $paths) { | ||||
| } | } | ||||
| return $result_map; | return $result_map; | ||||
| } | } | ||||
| protected function finishParse() { | protected function finishParse() { | ||||
| $commit = $this->commit; | $commit = $this->commit; | ||||
| if ($this->shouldQueueFollowupTasks()) { | if ($this->shouldQueueFollowupTasks()) { | ||||
| $this->queueTask( | $this->queueTask( | ||||
| 'PhabricatorRepositoryCommitOwnersWorker', | 'PhabricatorRepositoryCommitPublishWorker', | ||||
| array( | array( | ||||
| 'commitID' => $commit->getID(), | 'commitID' => $commit->getID(), | ||||
| )); | )); | ||||
| } | } | ||||
| } | } | ||||
| private function writeCommitChanges( | private function writeCommitChanges( | ||||
| PhabricatorRepository $repository, | PhabricatorRepository $repository, | ||||
| ▲ Show 20 Lines • Show All 43 Lines • Show Last 20 Lines | |||||