Changeset View
Changeset View
Standalone View
Standalone View
src/lint/linter/ArcanistPhpcsLinter.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Uses "PHP_CodeSniffer" to detect checkstyle errors in PHP code. | * Uses "PHP_CodeSniffer" to detect checkstyle errors in PHP code. | ||||
| * | |||||
| * @group linter | |||||
| */ | */ | ||||
| final class ArcanistPhpcsLinter extends ArcanistExternalLinter { | final class ArcanistPhpcsLinter extends ArcanistExternalLinter { | ||||
| private $reports; | private $reports; | ||||
| public function getInfoName() { | public function getInfoName() { | ||||
| return 'PHP_CodeSniffer'; | return 'PHP_CodeSniffer'; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 128 Lines • Show Last 20 Lines | |||||