@@ -24,6 +24,7 @@ |
||
24 | 24 | } |
25 | 25 | /** |
26 | 26 | * Build a link |
27 | + * @param string $value |
|
27 | 28 | */ |
28 | 29 | public function formatCell($value, array $rowData, $context) |
29 | 30 | { |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | abstract class AbstractTable |
19 | 19 | { |
20 | - const VIEW_CONTEXT = 'view'; |
|
20 | + const VIEW_CONTEXT = 'view'; |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * @var Router |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * |
141 | 141 | * @param OptionsResolver $resolver |
142 | 142 | */ |
143 | - public function configureOptions(OptionsResolver $resolver){} |
|
143 | + public function configureOptions(OptionsResolver $resolver) {} |
|
144 | 144 | /** |
145 | 145 | * @return array |
146 | 146 | */ |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | { |
181 | 181 | $t = []; |
182 | 182 | foreach ($this->getDataIterator() as $item) { |
183 | - $formatted = $this->formatter->formatRow($item, $this, $context); |
|
183 | + $formatted = $this->formatter->formatRow($item, $this, $context); |
|
184 | 184 | $t[] = $formatted; |
185 | 185 | } |
186 | 186 | |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | */ |
219 | 219 | public function getFilterForm() |
220 | 220 | { |
221 | - if (null===$this->filterForm) { |
|
221 | + if (null === $this->filterForm) { |
|
222 | 222 | $this->filterForm = $this->buildFilterForm( |
223 | 223 | $this->formFactory->createNamedBuilder($this->getTableId().'_filter') |
224 | 224 | ->add('dofilter', 'button') |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | $this->buildColumns($builder); |
283 | 283 | |
284 | 284 | $this->columns = $builder->getColumns(); |
285 | - $this->columnsInitialized = true; |
|
285 | + $this->columnsInitialized = true; |
|
286 | 286 | } |
287 | 287 | /** |
288 | 288 | * Sets the table identifier |
@@ -31,7 +31,7 @@ |
||
31 | 31 | $value = $rawValue; |
32 | 32 | } |
33 | 33 | |
34 | - $colVal = $column->formatCell($value, $row, $context);//Column definition |
|
34 | + $colVal = $column->formatCell($value, $row, $context); //Column definition |
|
35 | 35 | $newRow[$colIdentifier] = $colVal; |
36 | 36 | } |
37 | 37 |