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

Make 2 classes extend Phobject

Summary: At one point in the development of D26554 I had a bug that caused it to fail to parse classes with no extends statement. These two clases are the only ones in the entire Phorge codebase declared not extending anything.

Test Plan: Read the code

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: mainframe98, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26555

Pppery 0e79feb3 152632ee

+4 -2
+2
src/__phutil_library_map__.php
··· 9799 9799 'PhabricatorEditorURIParserException' => 'Exception', 9800 9800 'PhabricatorElasticFulltextStorageEngine' => 'PhabricatorFulltextStorageEngine', 9801 9801 'PhabricatorElasticsearchHost' => 'PhabricatorSearchHost', 9802 + 'PhabricatorElasticsearchQueryBuilder' => 'Phobject', 9802 9803 'PhabricatorElasticsearchSetupCheck' => 'PhabricatorSetupCheck', 9803 9804 'PhabricatorEmailAddressesSettingsPanel' => 'PhabricatorSettingsPanel', 9804 9805 'PhabricatorEmailContentSource' => 'PhabricatorContentSource', ··· 12272 12273 'PholioTransactionType' => 'PhabricatorModularTransactionType', 12273 12274 'PholioTransactionView' => 'PhabricatorApplicationTransactionView', 12274 12275 'PholioUploadedImageView' => 'AphrontView', 12276 + 'PhorgeApplicationMentionsListView' => 'Phobject', 12275 12277 'PhorgeCodeWarningSetupCheck' => 'PhabricatorSetupCheck', 12276 12278 'PhorgeFlagFlaggedObjectCustomField' => 'PhabricatorCustomField', 12277 12279 'PhorgeFlagFlaggedObjectFieldStorage' => 'Phobject',
+1 -1
src/applications/search/fulltextstorage/PhabricatorElasticsearchQueryBuilder.php
··· 1 1 <?php 2 2 3 - class PhabricatorElasticsearchQueryBuilder { 3 + final class PhabricatorElasticsearchQueryBuilder extends Phobject { 4 4 protected $name; 5 5 protected $clauses = array(); 6 6
+1 -1
src/applications/transactions/view/PhorgeApplicationMentionsListView.php
··· 1 1 <?php 2 2 3 - final class PhorgeApplicationMentionsListView { 3 + final class PhorgeApplicationMentionsListView extends Phobject { 4 4 5 5 private $edgeQuery; 6 6 private $viewer;