Changeset View
Changeset View
Standalone View
Standalone View
src/applications/owners/storage/PhabricatorOwnersPath.php
| Show First 20 Lines • Show All 43 Lines • ▼ Show 20 Lines | public static function newFromRef(array $ref) { | ||||
| return $path; | return $path; | ||||
| } | } | ||||
| public function getRef() { | public function getRef() { | ||||
| return array( | return array( | ||||
| 'repositoryPHID' => $this->getRepositoryPHID(), | 'repositoryPHID' => $this->getRepositoryPHID(), | ||||
| 'path' => $this->getPath(), | 'path' => $this->getPath(), | ||||
| 'display' => $this->getPathDisplay(), | |||||
| 'excluded' => (int)$this->getExcluded(), | 'excluded' => (int)$this->getExcluded(), | ||||
| ); | ); | ||||
| } | } | ||||
| public static function getTransactionValueChanges(array $old, array $new) { | public static function getTransactionValueChanges(array $old, array $new) { | ||||
| return array( | return array( | ||||
| self::getTransactionValueDiff($old, $new), | self::getTransactionValueDiff($old, $new), | ||||
| self::getTransactionValueDiff($new, $old), | self::getTransactionValueDiff($new, $old), | ||||
| ▲ Show 20 Lines • Show All 62 Lines • Show Last 20 Lines | |||||