Completed
Push — master ( a829ba...a05c2b )
by Timo
04:09
created
src/Models/DataTable.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -336,8 +336,8 @@
 block discarded – undo
336 336
         foreach ($this->_columns as $column)
337 337
         {
338 338
             $html .= '<td>' .
339
-                     ($column->getRelation() !== null ? $this->_getColumnValueFromRelation($rowModel, $column) : $column->format($attributes[$column->getName()] ?? ''))
340
-                     . '</td>';
339
+                        ($column->getRelation() !== null ? $this->_getColumnValueFromRelation($rowModel, $column) : $column->format($attributes[$column->getName()] ?? ''))
340
+                        . '</td>';
341 341
         }
342 342
         $html .= '</tr>';
343 343
 
Please login to merge, or discard this patch.