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

Various linter fixes

Summary: Self-explanatory.

Test Plan: Eyeball it.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D13808

+8 -8
+1 -1
scripts/symbols/import_repository_symbols.php
··· 203 203 } 204 204 } 205 205 206 - if (count ($symbols) >= $args->getArg('max-transaction')) { 206 + if (count($symbols) >= $args->getArg('max-transaction')) { 207 207 try { 208 208 echo pht( 209 209 "Committing %s symbols...\n",
+1 -1
src/applications/audit/editor/PhabricatorAuditEditor.php
··· 170 170 $audit_requested = PhabricatorAuditStatusConstants::AUDIT_REQUESTED; 171 171 $audit_reason = $this->getAuditReasons($phid); 172 172 } 173 - $requests[] = id (new PhabricatorRepositoryAuditRequest()) 173 + $requests[] = id(new PhabricatorRepositoryAuditRequest()) 174 174 ->setCommitPHID($object->getPHID()) 175 175 ->setAuditorPHID($phid) 176 176 ->setAuditStatus($audit_requested)
+1 -1
src/applications/diffusion/query/DiffusionCommitQuery.php
··· 300 300 $where = array(); 301 301 302 302 if ($this->repositoryPHIDs !== null) { 303 - $map_repositories = id (new PhabricatorRepositoryQuery()) 303 + $map_repositories = id(new PhabricatorRepositoryQuery()) 304 304 ->setViewer($this->getViewer()) 305 305 ->withPHIDs($this->repositoryPHIDs) 306 306 ->execute();
+1 -1
src/applications/maniphest/conduit/ManiphestUpdateConduitAPIMethod.php
··· 38 38 'phid')); 39 39 } 40 40 41 - $query = id (new ManiphestTaskQuery()) 41 + $query = id(new ManiphestTaskQuery()) 42 42 ->setViewer($request->getUser()) 43 43 ->needSubscriberPHIDs(true) 44 44 ->needProjectPHIDs(true);
+1 -1
src/applications/phame/controller/blog/PhameBlogListController.php
··· 38 38 $blog_list = $this->renderBlogList($blogs, $user, $nodata); 39 39 $blog_list->setPager($pager); 40 40 41 - $box = id (new PHUIObjectBoxView()) 41 + $box = id(new PHUIObjectBoxView()) 42 42 ->setHeaderText($title) 43 43 ->setObjectList($blog_list); 44 44
+1 -1
src/applications/ponder/controller/PonderQuestionEditController.php
··· 139 139 ->setValue($v_projects) 140 140 ->setDatasource(new PhabricatorProjectDatasource())); 141 141 142 - $form ->appendChild( 142 + $form->appendChild( 143 143 id(new AphrontFormSubmitControl()) 144 144 ->addCancelButton($this->getApplicationURI()) 145 145 ->setValue(pht('Ask Away!')));
+1 -1
src/infrastructure/markup/rule/PhabricatorObjectRemarkupRule.php
··· 53 53 return $uri; 54 54 } 55 55 56 - protected function renderObjectRefForAnyMedia ( 56 + protected function renderObjectRefForAnyMedia( 57 57 $object, 58 58 PhabricatorObjectHandle $handle, 59 59 $anchor,
+1 -1
src/view/phui/calendar/PHUICalendarMonthView.php
··· 253 253 $today_class .= ' last-weekday'; 254 254 } 255 255 256 - $today_slot = phutil_tag ( 256 + $today_slot = phutil_tag( 257 257 'div', 258 258 array( 259 259 'class' => $today_class,