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

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

Test Plan: N/A

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

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

authored by

Joshua Spence and committed by
epriestley
857c11a3 8dafabbb

+3 -13
+3 -2
src/__phutil_library_map__.php
··· 1674 1674 'PhabricatorHovercardView' => 'view/widget/hovercard/PhabricatorHovercardView.php', 1675 1675 'PhabricatorHunksManagementMigrateWorkflow' => 'applications/differential/management/PhabricatorHunksManagementMigrateWorkflow.php', 1676 1676 'PhabricatorHunksManagementWorkflow' => 'applications/differential/management/PhabricatorHunksManagementWorkflow.php', 1677 - 'PhabricatorIRCBot' => 'infrastructure/daemon/bot/PhabricatorIRCBot.php', 1678 1677 'PhabricatorIRCProtocolAdapter' => 'infrastructure/daemon/bot/adapter/PhabricatorIRCProtocolAdapter.php', 1679 1678 'PhabricatorIRCProtocolHandler' => 'infrastructure/daemon/bot/handler/PhabricatorIRCProtocolHandler.php', 1680 1679 'PhabricatorImageTransformer' => 'applications/files/PhabricatorImageTransformer.php', ··· 3560 3559 0 => 'HeraldDAO', 3561 3560 1 => 'PhabricatorFlaggableInterface', 3562 3561 2 => 'PhabricatorPolicyInterface', 3562 + 3 => 'PhabricatorDestructableInterface', 3563 3563 ), 3564 3564 'HeraldRuleController' => 'HeraldController', 3565 3565 'HeraldRuleEdit' => 'HeraldDAO', ··· 4506 4506 'PhabricatorHovercardView' => 'AphrontView', 4507 4507 'PhabricatorHunksManagementMigrateWorkflow' => 'PhabricatorHunksManagementWorkflow', 4508 4508 'PhabricatorHunksManagementWorkflow' => 'PhabricatorManagementWorkflow', 4509 - 'PhabricatorIRCBot' => 'PhabricatorDaemon', 4510 4509 'PhabricatorIRCProtocolAdapter' => 'PhabricatorBaseProtocolAdapter', 4511 4510 'PhabricatorIRCProtocolHandler' => 'PhabricatorBotHandler', 4512 4511 'PhabricatorInfrastructureTestCase' => 'PhabricatorTestCase', ··· 5342 5341 4 => 'PhabricatorTokenReceiverInterface', 5343 5342 5 => 'PhabricatorFlaggableInterface', 5344 5343 6 => 'PhabricatorApplicationTransactionInterface', 5344 + 7 => 'PhabricatorProjectInterface', 5345 5345 ), 5346 5346 'PholioMockCommentController' => 'PholioController', 5347 5347 'PholioMockEditController' => 'PholioController', ··· 5549 5549 4 => 'PhabricatorFlaggableInterface', 5550 5550 5 => 'PhabricatorPolicyInterface', 5551 5551 6 => 'PhabricatorTokenReceiverInterface', 5552 + 7 => 'PhabricatorProjectInterface', 5552 5553 ), 5553 5554 'PonderQuestionCommentController' => 'PonderController', 5554 5555 'PonderQuestionEditController' => 'PonderController',
-11
src/infrastructure/daemon/bot/PhabricatorIRCBot.php
··· 1 - <?php 2 - 3 - /** 4 - * Placeholder to let people know that the bot has been renamed 5 - */ 6 - final class PhabricatorIRCBot extends PhabricatorDaemon { 7 - public function run() { 8 - throw new Exception( 9 - 'This daemon has been deprecated, use `PhabricatorBot` instead.'); 10 - } 11 - }