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