1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace Atk4\Ui\Table\Column;
6:
7: use Atk4\Ui\Table;
8:
9: /**
10: * Implements Column helper for grid.
11: */
12: class Text extends Table\Column
13: {
14: public array $attr = ['all' => ['class' => ['atk-cell-expanded']]];
15: }
16: