@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 the `PhabricatorBotDifferentialNotificationHandler` class.

Summary: This class has been deprecated for a while now (see rPdad7c65bf56384480be7c18e02fdc01ea67cf1ff). It should be safe to remove.

Test Plan: N/A

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

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

authored by

Joshua Spence and committed by
epriestley
34cca383 857c11a3

-21
-2
src/__phutil_library_map__.php
··· 1309 1309 'PhabricatorBotBaseStreamingProtocolAdapter' => 'infrastructure/daemon/bot/adapter/PhabricatorBotBaseStreamingProtocolAdapter.php', 1310 1310 'PhabricatorBotChannel' => 'infrastructure/daemon/bot/target/PhabricatorBotChannel.php', 1311 1311 'PhabricatorBotDebugLogHandler' => 'infrastructure/daemon/bot/handler/PhabricatorBotDebugLogHandler.php', 1312 - 'PhabricatorBotDifferentialNotificationHandler' => 'infrastructure/daemon/bot/handler/PhabricatorBotDifferentialNotificationHandler.php', 1313 1312 'PhabricatorBotFeedNotificationHandler' => 'infrastructure/daemon/bot/handler/PhabricatorBotFeedNotificationHandler.php', 1314 1313 'PhabricatorBotFlowdockProtocolAdapter' => 'infrastructure/daemon/bot/adapter/PhabricatorBotFlowdockProtocolAdapter.php', 1315 1314 'PhabricatorBotHandler' => 'infrastructure/daemon/bot/handler/PhabricatorBotHandler.php', ··· 4104 4103 'PhabricatorBotBaseStreamingProtocolAdapter' => 'PhabricatorBaseProtocolAdapter', 4105 4104 'PhabricatorBotChannel' => 'PhabricatorBotTarget', 4106 4105 'PhabricatorBotDebugLogHandler' => 'PhabricatorBotHandler', 4107 - 'PhabricatorBotDifferentialNotificationHandler' => 'PhabricatorBotHandler', 4108 4106 'PhabricatorBotFeedNotificationHandler' => 'PhabricatorBotHandler', 4109 4107 'PhabricatorBotFlowdockProtocolAdapter' => 'PhabricatorBotBaseStreamingProtocolAdapter', 4110 4108 'PhabricatorBotLogHandler' => 'PhabricatorBotHandler',
-19
src/infrastructure/daemon/bot/handler/PhabricatorBotDifferentialNotificationHandler.php
··· 1 - <?php 2 - 3 - /** 4 - * @deprecated 5 - */ 6 - final class PhabricatorBotDifferentialNotificationHandler 7 - extends PhabricatorBotHandler { 8 - 9 - public function receiveMessage(PhabricatorBotMessage $message) { 10 - static $notified; 11 - if (!$notified) { 12 - phlog( 13 - 'PhabricatorBotDifferentialNotificationHandler is deprecated, use '. 14 - 'PhabricatorBotFeedNotificationHandler instead.'); 15 - $notified = true; 16 - } 17 - } 18 - 19 - }