1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-25 16:22:42 +01:00

Fix visibility of the ArcanistPhpcsLinter::getMandatoryFlags method

Summary: Ref T6822.

Test Plan: All the cool linters are doing it.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6822

Differential Revision: https://secure.phabricator.com/D11414
This commit is contained in:
Joshua Spence 2015-01-16 07:17:46 +11:00
parent 6694834f29
commit 8173ea3eea

View file

@ -29,7 +29,7 @@ final class ArcanistPhpcsLinter extends ArcanistExternalLinter {
return 'phpcs'; return 'phpcs';
} }
public function getMandatoryFlags() { protected function getMandatoryFlags() {
return array('--report=xml'); return array('--report=xml');
} }