Changeset View
Changeset View
Standalone View
Standalone View
src/lint/ArcanistLintMessage.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Message emitted by a linter, like an error or warning. | * Message emitted by a linter, like an error or warning. | ||||
| * | |||||
| * @group lint | |||||
| */ | */ | ||||
| final class ArcanistLintMessage { | final class ArcanistLintMessage { | ||||
| protected $path; | protected $path; | ||||
| protected $line; | protected $line; | ||||
| protected $char; | protected $char; | ||||
| protected $code; | protected $code; | ||||
| protected $severity; | protected $severity; | ||||
| ▲ Show 20 Lines • Show All 216 Lines • Show Last 20 Lines | |||||