Completed
Pull Request — master (#5)
by Joao
05:40
created
tests/JwtSessionTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -66,19 +66,19 @@  discard block
 block discarded – undo
66 66
             ],
67 67
             [
68 68
                 [
69
-                    "text" => [ 1, 2, 3 ]
69
+                    "text" => [1, 2, 3]
70 70
                 ],
71 71
                 "text|a:3:{i:0;i:1;i:1;i:2;i:2;i:3;}"
72 72
             ],
73 73
             [
74 74
                 [
75
-                    "text" => [ "a" => 1, "b" => 2, "c" => 3 ]
75
+                    "text" => ["a" => 1, "b" => 2, "c" => 3]
76 76
                 ],
77 77
                 "text|a:3:{s:1:\"a\";i:1;s:1:\"b\";i:2;s:1:\"c\";i:3;}"
78 78
             ],
79 79
             [
80 80
                 [
81
-                    "text" => [ "a" => 1, "b" => 2, "c" => 3 ],
81
+                    "text" => ["a" => 1, "b" => 2, "c" => 3],
82 82
                     "single" => 2000
83 83
                 ],
84 84
                 "text|a:3:{s:1:\"a\";i:1;s:1:\"b\";i:2;s:1:\"c\";i:3;}single|i:2000;"
@@ -91,13 +91,13 @@  discard block
 block discarded – undo
91 91
             ],
92 92
             [
93 93
                 [
94
-                    "text" => [ "a" => $obj ]
94
+                    "text" => ["a" => $obj]
95 95
                 ],
96 96
                 "text|a:1:{s:1:\"a\";O:8:\"stdClass\":2:{s:5:\"prop1\";s:6:\"value1\";s:5:\"prop2\";s:6:\"value2\";}}"
97 97
             ],
98 98
             [
99 99
                 [
100
-                    "text" => [ $obj ]
100
+                    "text" => [$obj]
101 101
                 ],
102 102
                 "text|a:1:{i:0;O:8:\"stdClass\":2:{s:5:\"prop1\";s:6:\"value1\";s:5:\"prop2\";s:6:\"value2\";}}"
103 103
             ]
Please login to merge, or discard this patch.