Passed
Push — html ( 1dd7b6 )
by Peter
08:14
created
tests/Grid/Action/ActionTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,11 +35,11 @@
 block discarded – undo
35 35
 
36 36
         return [
37 37
             'simple'               => ['Button', null, [], null, null, "<button>Button</button>"],
38
-            'with attributes'      => ['Button', $attributes, [], null, null, "<button$str>Button</button>",],
38
+            'with attributes'      => ['Button', $attributes, [], null, null, "<button$str>Button</button>", ],
39 39
             'missing translations' => ['Button', null, [], [], null, "<button>Button</button>"],
40 40
             'custom tag'           => ['Button', null, [], null, 'mybutton', "<mybutton>Button</mybutton>"],
41 41
             'with translations'    => ['Button', null, [], ['Button' => 'Gomb'], null, "<button>Gomb</button>"],
42
-            'with callbacks'       => ['Button', $attributes, $callbacks, null, null, "<button$str>Button</button>",],
42
+            'with callbacks'       => ['Button', $attributes, $callbacks, null, null, "<button$str>Button</button>", ],
43 43
         ];
44 44
     }
45 45
 
Please login to merge, or discard this patch.
tests/Grid/Cell/SortableTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@
 block discarded – undo
22 22
 
23 23
         return [
24 24
             'simple'               => ['ABC', 'a', '', '', null, null, null, "<th>ABC <a></a></th>"],
25
-            'with attributes'      => ['ABC', 'a', '', '', $attribs, null, null, "<th$str>ABC <a></a></th>",],
26
-            'missing translations' => ['ABC', 'a', '', '', null, [], null, "<th>ABC <a></a></th>",],
25
+            'with attributes'      => ['ABC', 'a', '', '', $attribs, null, null, "<th$str>ABC <a></a></th>", ],
26
+            'missing translations' => ['ABC', 'a', '', '', null, [], null, "<th>ABC <a></a></th>", ],
27 27
             'custom tag'           => ['ABC', 'a', '', '', null, null, 'myth', "<myth>ABC <a></a></myth>"],
28 28
             'with translations'    => ['ABC', 'a', '', '', null, ['ABC' => 'CBA'], null, "<th>CBA <a></a></th>"],
29 29
         ];
Please login to merge, or discard this patch.