Completed
Push — master ( a4bd6c...26a953 )
by Vitaliy
03:59
created
src/Component/Column.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     public function getCurrentValue()
105 105
     {
106 106
         $func = $this->getValueCalculator();
107
-        $currentDataRow =  $this->getGrid()->getCurrentRow();
107
+        $currentDataRow = $this->getGrid()->getCurrentRow();
108 108
         if ($func !== null) {
109 109
             return call_user_func($func, $currentDataRow);
110 110
         } else {
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
         if ($this->dataCellPart === null) {
313 313
             $this->dataCellPart = new Part(
314 314
                 $this->getDataCell(),
315
-                'column-' . $this->getId() . '-data-cell',
315
+                'column-'.$this->getId().'-data-cell',
316 316
                 'record_view'
317 317
             );
318 318
         }
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
         if ($this->titleCellPart === null) {
328 328
             $this->titleCellPart = new Part(
329 329
                 $this->titleCellPart = $this->getTitleCell(),
330
-                'column-' . $this->getId() . '-title-cell',
330
+                'column-'.$this->getId().'-title-cell',
331 331
                 'title_row'
332 332
             );
333 333
         }
Please login to merge, or discard this patch.