@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 deprecated `PhabricatorIRCProtocolHandler` class.

Summary: This class has been deprecated for a while now (see rP0a8b0d1392bd79b4e88fbf910b176c960d57b4b4). 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/D9467

authored by

Joshua Spence and committed by
epriestley
747946eb 34cca383

-18
-2
src/__phutil_library_map__.php
··· 1674 1674 'PhabricatorHunksManagementMigrateWorkflow' => 'applications/differential/management/PhabricatorHunksManagementMigrateWorkflow.php', 1675 1675 'PhabricatorHunksManagementWorkflow' => 'applications/differential/management/PhabricatorHunksManagementWorkflow.php', 1676 1676 'PhabricatorIRCProtocolAdapter' => 'infrastructure/daemon/bot/adapter/PhabricatorIRCProtocolAdapter.php', 1677 - 'PhabricatorIRCProtocolHandler' => 'infrastructure/daemon/bot/handler/PhabricatorIRCProtocolHandler.php', 1678 1677 'PhabricatorImageTransformer' => 'applications/files/PhabricatorImageTransformer.php', 1679 1678 'PhabricatorInfrastructureTestCase' => 'infrastructure/__tests__/PhabricatorInfrastructureTestCase.php', 1680 1679 'PhabricatorInlineCommentController' => 'infrastructure/diff/PhabricatorInlineCommentController.php', ··· 4505 4504 'PhabricatorHunksManagementMigrateWorkflow' => 'PhabricatorHunksManagementWorkflow', 4506 4505 'PhabricatorHunksManagementWorkflow' => 'PhabricatorManagementWorkflow', 4507 4506 'PhabricatorIRCProtocolAdapter' => 'PhabricatorBaseProtocolAdapter', 4508 - 'PhabricatorIRCProtocolHandler' => 'PhabricatorBotHandler', 4509 4507 'PhabricatorInfrastructureTestCase' => 'PhabricatorTestCase', 4510 4508 'PhabricatorInlineCommentController' => 'PhabricatorController', 4511 4509 'PhabricatorInlineCommentInterface' => 'PhabricatorMarkupInterface',
-16
src/infrastructure/daemon/bot/handler/PhabricatorIRCProtocolHandler.php
··· 1 - <?php 2 - 3 - /** 4 - * @deprecated 5 - */ 6 - final class PhabricatorIRCProtocolHandler extends PhabricatorBotHandler { 7 - 8 - public function receiveMessage(PhabricatorBotMessage $message) { 9 - static $warned; 10 - if (!$warned) { 11 - $warned = true; 12 - phlog('The PhabricatorIRCProtocolHandler has been deprecated.'); 13 - } 14 - } 15 - 16 - }