@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 ancient "PhabricatorQuickSearchEngineExtension" compatibility class

Summary: Ref T5378. This class was renamed more than a year ago, in D19087. Remove the leftover compatiblity layer.

Test Plan: `grep`

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T5378

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

-8
-2
src/__phutil_library_map__.php
··· 4313 4313 'PhabricatorQueryOrderItem' => 'infrastructure/query/order/PhabricatorQueryOrderItem.php', 4314 4314 'PhabricatorQueryOrderTestCase' => 'infrastructure/query/order/__tests__/PhabricatorQueryOrderTestCase.php', 4315 4315 'PhabricatorQueryOrderVector' => 'infrastructure/query/order/PhabricatorQueryOrderVector.php', 4316 - 'PhabricatorQuickSearchEngineExtension' => 'applications/search/engineextension/PhabricatorQuickSearchEngineExtension.php', 4317 4316 'PhabricatorRateLimitRequestExceptionHandler' => 'aphront/handler/PhabricatorRateLimitRequestExceptionHandler.php', 4318 4317 'PhabricatorRebuildIndexesWorker' => 'applications/search/worker/PhabricatorRebuildIndexesWorker.php', 4319 4318 'PhabricatorRecaptchaConfigOptions' => 'applications/config/option/PhabricatorRecaptchaConfigOptions.php', ··· 10552 10551 'Phobject', 10553 10552 'Iterator', 10554 10553 ), 10555 - 'PhabricatorQuickSearchEngineExtension' => 'PhabricatorDatasourceEngineExtension', 10556 10554 'PhabricatorRateLimitRequestExceptionHandler' => 'PhabricatorRequestExceptionHandler', 10557 10555 'PhabricatorRebuildIndexesWorker' => 'PhabricatorWorker', 10558 10556 'PhabricatorRecaptchaConfigOptions' => 'PhabricatorApplicationConfigOptions',
-6
src/applications/search/engineextension/PhabricatorQuickSearchEngineExtension.php
··· 1 - <?php 2 - 3 - // TODO: This is an older name "PhabricatorDatasourceEngineExtension" purely 4 - // to preserve compatibility that should be removed soon. 5 - abstract class PhabricatorQuickSearchEngineExtension 6 - extends PhabricatorDatasourceEngineExtension {}