@@ -21,7 +21,7 @@ |
||
21 | 21 | * transformation object. First, though, remove any metadata items. |
22 | 22 | * |
23 | 23 | * @param FormatterOptions $options Options that affect output formatting. |
24 | - * @return Consolidation\OutputFormatters\Transformations\TableTransformation |
|
24 | + * @return \Consolidation\OutputFormatters\Transformations\TableTransformation |
|
25 | 25 | */ |
26 | 26 | public function restructure(FormatterOptions $options) |
27 | 27 | { |
@@ -59,6 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | /** |
61 | 61 | * Right-justify the cell data. |
62 | + * @param string $key |
|
62 | 63 | */ |
63 | 64 | protected function justifyCellData($key, $cellData) |
64 | 65 | { |
@@ -76,6 +77,7 @@ discard block |
||
76 | 77 | |
77 | 78 | /** |
78 | 79 | * Determine if this is a column that should be formatted. |
80 | + * @param string $key |
|
79 | 81 | */ |
80 | 82 | protected function isRenderedColumn($key) |
81 | 83 | { |
@@ -102,6 +104,7 @@ discard block |
||
102 | 104 | * This formatter only works with columns whose columns are strings. |
103 | 105 | * To use this formatter for another purpose, override this method |
104 | 106 | * to ensure that the cell data is a string before it is formatted. |
107 | + * @return double |
|
105 | 108 | */ |
106 | 109 | protected function convertCellDataToString($cellData) |
107 | 110 | { |
@@ -110,6 +113,7 @@ discard block |
||
110 | 113 | |
111 | 114 | /** |
112 | 115 | * Get the cached column width for the provided key. |
116 | + * @return integer |
|
113 | 117 | */ |
114 | 118 | protected function columnWidth($key) |
115 | 119 | { |