@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.

Fix whitespace around methods

+6 -2
+1 -1
src/applications/auth/oauth/provider/PhabricatorOAuthProviderPhabricator.php
··· 14 14 return array( 15 15 'grant_type' => 'authorization_code', 16 16 ); 17 - 18 17 } 18 + 19 19 public function decodeTokenResponse($response) { 20 20 $decoded = json_decode($response, true); 21 21 if (!is_array($decoded)) {
+1
src/applications/differential/field/specification/DifferentialLintFieldSpecification.php
··· 14 14 public function renderValueForDiffView() { 15 15 return $this->renderValueForRevisionView(); 16 16 } 17 + 17 18 public function shouldAppearOnRevisionView() { 18 19 return true; 19 20 }
+1
src/applications/feed/PhabricatorFeedStoryPublisher.php
··· 20 20 $this->subscribedPHIDs = $phids; 21 21 return $this; 22 22 } 23 + 23 24 public function setPrimaryObjectPHID($phid) { 24 25 $this->primaryObjectPHID = $phid; 25 26 return $this;
+1
src/applications/owners/controller/PhabricatorOwnersController.php
··· 11 11 $this->filter = $filter; 12 12 return $this; 13 13 } 14 + 14 15 public function buildStandardPageResponse($view, array $data) { 15 16 16 17 $page = $this->buildStandardPageView();
+1 -1
src/applications/repository/storage/PhabricatorRepository.php
··· 130 130 $args = func_get_args(); 131 131 $args = $this->formatLocalCommand($args); 132 132 return newv('ExecFuture', $args); 133 - 134 133 } 134 + 135 135 public function passthruLocalCommand($pattern /* , $arg, ... */) { 136 136 $args = func_get_args(); 137 137 $args = $this->formatLocalCommand($args);
+1
src/view/form/control/AphrontFormTextControl.php
··· 12 12 private function getDisableAutocomplete() { 13 13 return $this->disableAutocomplete; 14 14 } 15 + 15 16 public function getSigil() { 16 17 return $this->sigil; 17 18 }