mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-10 14:51:06 +01:00
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
This commit is contained in:
parent
a5f031835c
commit
4f5123e253
1 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
|||
<?php
|
||||
|
||||
final class PhabricatorLintEngine extends PhutilLintEngine {
|
||||
/**
|
||||
* @concrete-extensible
|
||||
*/
|
||||
class PhabricatorLintEngine extends PhutilLintEngine {
|
||||
|
||||
public function buildLinters() {
|
||||
$linters = parent::buildLinters();
|
||||
|
|
Loading…
Reference in a new issue