Changeset View
Changeset View
Standalone View
Standalone View
src/console/PhutilConsoleFormatter.php
| <?php | <?php | ||||
| final class PhutilConsoleFormatter { | final class PhutilConsoleFormatter extends Phobject { | ||||
| private static $colorCodes = array( | private static $colorCodes = array( | ||||
| 'black' => 0, | 'black' => 0, | ||||
| 'red' => 1, | 'red' => 1, | ||||
| 'green' => 2, | 'green' => 2, | ||||
| 'yellow' => 3, | 'yellow' => 3, | ||||
| 'blue' => 4, | 'blue' => 4, | ||||
| 'magenta' => 5, | 'magenta' => 5, | ||||
| ▲ Show 20 Lines • Show All 86 Lines • Show Last 20 Lines | |||||