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

Remove unused function ManiphestView::renderTagForTask()

Summary: Its only usage was removed in rP0d77a7f3.

Test Plan: Grep the codebase.

Reviewers: O1 Blessed Committers, avivey

Reviewed By: O1 Blessed Committers, avivey

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26515

+1 -12
+1 -12
src/applications/maniphest/view/ManiphestView.php
··· 1 1 <?php 2 2 3 - abstract class ManiphestView extends AphrontView { 4 - 5 - public static function renderTagForTask(ManiphestTask $task) { 6 - $status = $task->getStatus(); 7 - $status_name = ManiphestTaskStatus::getTaskStatusFullName($status); 8 - 9 - return id(new PHUITagView()) 10 - ->setType(PHUITagView::TYPE_STATE) 11 - ->setName($status_name); 12 - } 13 - 14 - } 3 + abstract class ManiphestView extends AphrontView {}