Test Setup Failed
Push — master ( 26a157...82ba33 )
by Vitaliy
07:02 queued 34s
created
src/Component/Column.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -334,7 +334,7 @@
 block discarded – undo
334 334
     }
335 335
 
336 336
     /**
337
-     * @return null|Grid
337
+     * @return Compound|null
338 338
      */
339 339
     protected function getGrid()
340 340
     {
Please login to merge, or discard this patch.
src/Component/PageTotalsRow.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $this->id = 'page_totals_row';
58 58
         $this->destinationParentId = 'list_container';
59 59
         $this->operations = $operations;
60
-        $this->dataCollectingCallback = function () {
60
+        $this->dataCollectingCallback = function() {
61 61
             if ($this->stopDataCollecting) {
62 62
                 return;
63 63
             }
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $this->attachToCompoundInternal($root);
78 78
         /** @var CollectionView $collectionView */
79 79
         $collectionView = $root->getComponent('collection_view');
80
-        $collectionView->setDataInjector(function ($dataRow, $collectionView) use ($root) {
80
+        $collectionView->setDataInjector(function($dataRow, $collectionView) use ($root) {
81 81
             call_user_func([$root, 'setCurrentRow'], $dataRow, $collectionView);
82 82
             call_user_func($this->dataCollectingCallback);
83 83
         });
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
             $valueCalculators[$column->getId()] = $column->getValueCalculator();
116 116
             $valueFormatters[$column->getId()] = $prevFormatter = $column->getValueFormatter();
117 117
             $column->setValueCalculator(null);
118
-            $column->setValueFormatter(function ($value) use ($prevFormatter, $column) {
118
+            $column->setValueFormatter(function($value) use ($prevFormatter, $column) {
119 119
                 if ($prevFormatter) {
120 120
                     $value = call_user_func($prevFormatter, $value);
121 121
                 }
Please login to merge, or discard this patch.