@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 an unused class

Summary: This class is no longer required after D10869.

Test Plan: `grep`

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

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

-5
-2
src/__phutil_library_map__.php
··· 330 330 'DifferentialDependsOnField' => 'applications/differential/customfield/DifferentialDependsOnField.php', 331 331 'DifferentialDiff' => 'applications/differential/storage/DifferentialDiff.php', 332 332 'DifferentialDiffCreateController' => 'applications/differential/controller/DifferentialDiffCreateController.php', 333 - 'DifferentialDiffCreationRejectException' => 'applications/differential/exception/DifferentialDiffCreationRejectException.php', 334 333 'DifferentialDiffEditor' => 'applications/differential/editor/DifferentialDiffEditor.php', 335 334 'DifferentialDiffPHIDType' => 'applications/differential/phid/DifferentialDiffPHIDType.php', 336 335 'DifferentialDiffProperty' => 'applications/differential/storage/DifferentialDiffProperty.php', ··· 3381 3380 'PhabricatorDestructibleInterface', 3382 3381 ), 3383 3382 'DifferentialDiffCreateController' => 'DifferentialController', 3384 - 'DifferentialDiffCreationRejectException' => 'Exception', 3385 3383 'DifferentialDiffEditor' => 'PhabricatorApplicationTransactionEditor', 3386 3384 'DifferentialDiffPHIDType' => 'PhabricatorPHIDType', 3387 3385 'DifferentialDiffProperty' => 'DifferentialDAO',
-3
src/applications/differential/exception/DifferentialDiffCreationRejectException.php
··· 1 - <?php 2 - 3 - final class DifferentialDiffCreationRejectException extends Exception {}