1 | <?php |
||
16 | class OutputHelper extends Helper |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
|
|||
21 | */ |
||
22 | 1 | public function getName() |
|
26 | |||
27 | /** |
||
28 | * Returns formatted list of records. |
||
29 | * |
||
30 | * @param array $items List of items. |
||
31 | * @param integer $items_per_row Number of bugs displayed per row. |
||
32 | * @param string|null $color Color. |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | 6 | public function formatArray(array $items, $items_per_row, $color = null) |
|
55 | |||
56 | } |
||
57 |