Changeset View
Changeset View
Standalone View
Standalone View
src/lint/renderer/ArcanistSummaryLintRenderer.php
| Show All 18 Lines | foreach ($messages as $message) { | ||||
| $text[] = "{$path}:{$line}:{$severity}: {$name}\n"; | $text[] = "{$path}:{$line}:{$severity}: {$name}\n"; | ||||
| } | } | ||||
| return implode('', $text); | return implode('', $text); | ||||
| } | } | ||||
| public function renderOkayResult() { | public function renderOkayResult() { | ||||
| return phutil_console_format( | return phutil_console_format( | ||||
| "<bg:green>** OKAY **</bg> No lint warnings.\n"); | "<bg:green>** %s **</bg> %s\n", | ||||
| pht('OKAY'), | |||||
| pht('No lint warnings.')); | |||||
| } | } | ||||
| } | } | ||||