1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-22 23:02:42 +01:00

Define DiffusionRequest::setPath()

Summary: Resolves T2056.

Test Plan: Browsed SVN repo.

Reviewers: epriestley

Reviewed By: epriestley

CC: ced, aran, Korvin

Maniphest Tasks: T2056

Differential Revision: https://secure.phabricator.com/D3943
This commit is contained in:
vrana 2012-11-09 11:14:49 -08:00
parent 4f65d4f344
commit a316a0bbb3

View file

@ -188,6 +188,11 @@ abstract class DiffusionRequest {
return $this->callsign; return $this->callsign;
} }
public function setPath($path) {
$this->path = $path;
return $this;
}
public function getPath() { public function getPath() {
return $this->path; return $this->path;
} }