@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 ManiphestSavedQuery

Summary: This class is no longer used. It has no callsites.

Test Plan: `grep`

Reviewers: btrahan, chad

Reviewed By: chad

CC: aran

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

-15
-2
src/__phutil_library_map__.php
··· 705 705 'ManiphestRemarkupRule' => 'applications/maniphest/remarkup/ManiphestRemarkupRule.php', 706 706 'ManiphestReplyHandler' => 'applications/maniphest/mail/ManiphestReplyHandler.php', 707 707 'ManiphestReportController' => 'applications/maniphest/controller/ManiphestReportController.php', 708 - 'ManiphestSavedQuery' => 'applications/maniphest/storage/ManiphestSavedQuery.php', 709 708 'ManiphestSearchIndexer' => 'applications/maniphest/search/ManiphestSearchIndexer.php', 710 709 'ManiphestSubpriorityController' => 'applications/maniphest/controller/ManiphestSubpriorityController.php', 711 710 'ManiphestSubscribeController' => 'applications/maniphest/controller/ManiphestSubscribeController.php', ··· 2767 2766 'ManiphestRemarkupRule' => 'PhabricatorRemarkupRuleObject', 2768 2767 'ManiphestReplyHandler' => 'PhabricatorMailReplyHandler', 2769 2768 'ManiphestReportController' => 'ManiphestController', 2770 - 'ManiphestSavedQuery' => 'ManiphestDAO', 2771 2769 'ManiphestSearchIndexer' => 'PhabricatorSearchDocumentIndexer', 2772 2770 'ManiphestSubpriorityController' => 'ManiphestController', 2773 2771 'ManiphestSubscribeController' => 'ManiphestController',
-13
src/applications/maniphest/storage/ManiphestSavedQuery.php
··· 1 - <?php 2 - 3 - /** 4 - * @group maniphest 5 - */ 6 - final class ManiphestSavedQuery extends ManiphestDAO { 7 - 8 - protected $name; 9 - protected $queryKey; 10 - protected $userPHID; 11 - protected $isDefault; 12 - 13 - }