Changeset View
Changeset View
Standalone View
Standalone View
src/applications/diffusion/data/DiffusionPathChange.php
| Show First 20 Lines • Show All 98 Lines • ▼ Show 20 Lines | public function getEpoch() { | ||||
| if ($this->getCommit()) { | if ($this->getCommit()) { | ||||
| return $this->getCommit()->getEpoch(); | return $this->getCommit()->getEpoch(); | ||||
| } | } | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function getAuthorName() { | public function getAuthorName() { | ||||
| if ($this->getCommitData()) { | if ($this->getCommitData()) { | ||||
| return $this->getCommitData()->getAuthorName(); | return $this->getCommitData()->getAuthorString(); | ||||
| } | } | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function getSummary() { | public function getSummary() { | ||||
| if (!$this->getCommitData()) { | if (!$this->getCommitData()) { | ||||
| return null; | return null; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 85 Lines • Show Last 20 Lines | |||||