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

Add assert_instances_of()

Auditors: epriestley

vrana a0417d97 b44f687c

+1 -1
-1
src/applications/differential/controller/changesetview/DifferentialChangesetViewController.php
··· 18 18 19 19 final class DifferentialChangesetViewController extends DifferentialController { 20 20 21 - 22 21 public function shouldRequireLogin() { 23 22 return !$this->allowsAnonymousAccess(); 24 23 }
+1
src/applications/diffusion/view/browsetable/DiffusionBrowseTableView.php
··· 22 22 private $handles = array(); 23 23 24 24 public function setPaths(array $paths) { 25 + assert_instances_of($paths, 'DiffusionRepositoryPath'); 25 26 $this->paths = $paths; 26 27 return $this; 27 28 }