Passed
Push — master ( 6d3166...a738c4 )
by Alex
02:19 queued 10s
created
Mezon/Router/Tests/UniversalRouteUnitTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,23 +46,23 @@
 block discarded – undo
46 46
      */
47 47
     public function universalRouteDataProvider(): array
48 48
     {
49
-        $setup = function () {
49
+        $setup = function() {
50 50
             return [
51 51
                 [
52 52
                     '/hello/[s:name]/',
53
-                    function () {
53
+                    function() {
54 54
                         return 'hello';
55 55
                     }
56 56
                 ],
57 57
                 [
58 58
                     '*',
59
-                    function () {
59
+                    function() {
60 60
                         return 'universal';
61 61
                     }
62 62
                 ],
63 63
                 [
64 64
                     '/bye/[s:name]/',
65
-                    function () {
65
+                    function() {
66 66
                         return 'bye';
67 67
                     }
68 68
                 ]
Please login to merge, or discard this patch.