@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 missing return to PhorgeFlagFlaggedObjectCustomField::setValueFromStorage()

Summary: Closes T16512

Test Plan: Run static code analysis; look at other setValueFromStorage() implementations in other `PhabricatorCustomField` subclasses.

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: mainframe98, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T16512

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

+1
+1
src/applications/flag/customfield/PhorgeFlagFlaggedObjectCustomField.php
··· 31 31 32 32 public function setValueFromStorage($value) { 33 33 $this->flag = $value; 34 + return $this; 34 35 } 35 36 36 37 // The parent function is defined to return a PhabricatorCustomFieldStorage,