Completed
Push — master ( 7a3394...5c2e50 )
by Vitaliy
03:05
created
src/Component/DetailsRow.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
         $tr->setAttribute('data-row-with-details', 1);
70 70
         $this->getGrid()->children()
71 71
             ->add($this->jquery, 1)
72
-            ->add($this->getScript());;
72
+            ->add($this->getScript()); ;
73 73
         // fix zebra styled tables
74 74
         $this->parent()->addChild(new DataView('<tr style="display: none"></tr>'));
75 75
 
Please login to merge, or discard this patch.
src/Component/AjaxDetailsRow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
     public function __construct(callable $urlGenerator, ResourceManager $resourceManager = null)
14 14
     {
15
-        parent::__construct(new DataView(null, function ($url) {
15
+        parent::__construct(new DataView(null, function($url) {
16 16
             return "<div data-details-container='1' data-details-url='$url'></div>";
17 17
         }), $resourceManager);
18 18
         $this->setUrlGenerator($urlGenerator);
Please login to merge, or discard this patch.