@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

Remove some unused properties

Summary: These class properties don't seem to be used.

Test Plan: Eyeball it.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, Korvin

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

-7
-2
src/applications/celerity/resources/CelerityResources.php
··· 5 5 */ 6 6 abstract class CelerityResources extends Phobject { 7 7 8 - private $map; 9 - 10 8 abstract public function getName(); 11 9 abstract public function getResourceData($name); 12 10
-5
src/applications/phid/storage/PhabricatorPHID.php
··· 2 2 3 3 final class PhabricatorPHID extends Phobject { 4 4 5 - protected $phid; 6 - protected $phidType; 7 - protected $ownerPHID; 8 - protected $parentPHID; 9 - 10 5 public static function generateNewPHID($type, $subtype = null) { 11 6 if (!$type) { 12 7 throw new Exception(pht('Can not generate PHID with no type.'));