Changeset View
Changeset View
Standalone View
Standalone View
src/applications/diffusion/ssh/DiffusionSSHWorkflow.php
| Show All 11 Lines | public function getRepository() { | ||||
| } | } | ||||
| return $this->repository; | return $this->repository; | ||||
| } | } | ||||
| public function getArgs() { | public function getArgs() { | ||||
| return $this->args; | return $this->args; | ||||
| } | } | ||||
| public function getEnvironment() { | |||||
| return array( | |||||
| 'PHABRICATOR_USER' => $this->getUser()->getUsername(), | |||||
| ); | |||||
| } | |||||
| abstract protected function executeRepositoryOperations(); | abstract protected function executeRepositoryOperations(); | ||||
| protected function writeError($message) { | protected function writeError($message) { | ||||
| $this->getErrorChannel()->write($message); | $this->getErrorChannel()->write($message); | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| final public function execute(PhutilArgumentParser $args) { | final public function execute(PhutilArgumentParser $args) { | ||||
| ▲ Show 20 Lines • Show All 96 Lines • Show Last 20 Lines | |||||