| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function getLabels() |
||
| 13 | { |
||
| 14 | return array( |
||
| 15 | Patch::STATUS_NEW => '<info>NEW</info>', |
||
| 16 | Patch::STATUS_ERRORS => '<fg=red>%s</>', |
||
| 17 | Patch::STATUS_CHANGED => '<fg=yellow>CHANGED</>', |
||
| 18 | Patch::STATUS_MATCH => '<info>MATCH</info>', |
||
| 19 | Patch::STATUS_AFFECTED => '<fg=cyan>AFFECTED</>', |
||
| 20 | Patch::STATUS_APPLIED => '<fg=white;options=bold>APPLIED</>', |
||
| 21 | Patch::STATUS_REMOVED => '<fg=red>REMOVED</>', |
||
| 22 | Patch::STATUS_EXCLUDED => '<fg=black>EXCLUDED</>', |
||
| 23 | Patch::STATUS_UNKNOWN => 'UNKNOWN' |
||
| 24 | ); |
||
| 27 |