@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 PhabricatorLintEngine extensible

Summary:
It makes sense for Phabricator customizations to use all the Phabricator linters and maybe add some more or delete some.
Doing this as proxy would be PITA as there are lots of methods that would need to be proxied.

Test Plan: Extended it.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

vrana 4f5123e2 a5f03183

+4 -1
+4 -1
src/infrastructure/lint/PhabricatorLintEngine.php
··· 1 1 <?php 2 2 3 - final class PhabricatorLintEngine extends PhutilLintEngine { 3 + /** 4 + * @concrete-extensible 5 + */ 6 + class PhabricatorLintEngine extends PhutilLintEngine { 4 7 5 8 public function buildLinters() { 6 9 $linters = parent::buildLinters();