Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/storage/DifferentialDiff.php
| Show First 20 Lines • Show All 223 Lines • ▼ Show 20 Lines | $dict = array( | ||||
| 'branch' => $this->getBranch(), | 'branch' => $this->getBranch(), | ||||
| 'bookmark' => $this->getBookmark(), | 'bookmark' => $this->getBookmark(), | ||||
| 'creationMethod' => $this->getCreationMethod(), | 'creationMethod' => $this->getCreationMethod(), | ||||
| 'description' => $this->getDescription(), | 'description' => $this->getDescription(), | ||||
| 'unitStatus' => $this->getUnitStatus(), | 'unitStatus' => $this->getUnitStatus(), | ||||
| 'lintStatus' => $this->getLintStatus(), | 'lintStatus' => $this->getLintStatus(), | ||||
| 'changes' => array(), | 'changes' => array(), | ||||
| 'properties' => array(), | 'properties' => array(), | ||||
| 'projectName' => $this->getArcanistProjectName() | 'projectName' => $this->getArcanistProjectName(), | ||||
| ); | ); | ||||
| $dict['changes'] = $this->buildChangesList(); | $dict['changes'] = $this->buildChangesList(); | ||||
| $properties = id(new DifferentialDiffProperty())->loadAllWhere( | $properties = id(new DifferentialDiffProperty())->loadAllWhere( | ||||
| 'diffID = %d', | 'diffID = %d', | ||||
| $this->getID()); | $this->getID()); | ||||
| foreach ($properties as $property) { | foreach ($properties as $property) { | ||||
| ▲ Show 20 Lines • Show All 206 Lines • Show Last 20 Lines | |||||