@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at recaptime-dev/main 18 lines 444 B view raw
1<?php 2 3final class PhabricatorAphlictManagementStartWorkflow 4 extends PhabricatorAphlictManagementWorkflow { 5 6 protected function didConstruct() { 7 $this 8 ->setName('start') 9 ->setSynopsis(pht('Start the notifications server.')) 10 ->setArguments($this->getLaunchArguments()); 11 } 12 13 public function execute(PhutilArgumentParser $args) { 14 $this->parseLaunchArguments($args); 15 return $this->executeStartCommand(); 16 } 17 18}