@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | $text = $column->getTitle(); |
41 | 41 | } |
42 | 42 | |
43 | - return $column->getGrid()->getHtmlBuilder()->tag('th', (string)$text); |
|
43 | + return $column->getGrid()->getHtmlBuilder()->tag('th', (string) $text); |
|
44 | 44 | } |
45 | 45 | } |
46 | 46 | |
@@ -54,10 +54,10 @@ discard block |
||
54 | 54 | $filter = ''; |
55 | 55 | |
56 | 56 | if ($column->isFilterable()) { |
57 | - $filter = (string)$column->getFilter()->render(); |
|
57 | + $filter = (string) $column->getFilter()->render(); |
|
58 | 58 | } |
59 | 59 | |
60 | - return $column->getGrid()->getHtmlBuilder()->tag('th', (string)$filter); |
|
60 | + return $column->getGrid()->getHtmlBuilder()->tag('th', (string) $filter); |
|
61 | 61 | } |
62 | 62 | } |
63 | 63 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | function grid_cell(Grid\CellInterface $cell) |
86 | 86 | { |
87 | - return $cell->getColumn()->getGrid()->getHtmlBuilder()->tag('td', (string)$cell->getValue()); |
|
87 | + return $cell->getColumn()->getGrid()->getHtmlBuilder()->tag('td', (string) $cell->getValue()); |
|
88 | 88 | } |
89 | 89 | } |
90 | 90 |