| 1 | <?php |
||
| 12 | class IconColumn implements ColumnFormatter { |
||
| 13 | |||
| 14 | /** @var IconAdapter */ |
||
| 15 | private $_iconAdapter; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * DateColumn constructor. |
||
| 19 | * @param IconAdapter $iconAdapter |
||
| 20 | * @internal param string $dateFormat |
||
| 21 | */ |
||
| 22 | 1 | public function __construct(IconAdapter $iconAdapter) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $column |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | 1 | public function format(string $column) : string |
|
| 35 | } |