@@ -99,7 +99,7 @@ public function testStringInputWithIntData(): void
99
99
]);
100
100
}
101
101
102
- public function testDefaultFormattingWithRounding (): void
102
+ public function testDefaultFormattingWithRounding ()
103
103
{
104
104
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , ['scale ' => 0 , 'rounding_mode ' => \NumberFormatter::ROUND_UP ]);
105
105
$ form ->setData ('12345.54321 ' );
@@ -139,7 +139,7 @@ public function testSubmitNullWithEmptyDataSetToNull()
139
139
$ this ->assertNull ($ form ->getData ());
140
140
}
141
141
142
- public function testSubmitNumericInput (): void
142
+ public function testSubmitNumericInput ()
143
143
{
144
144
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , ['input ' => 'number ' ]);
145
145
$ form ->submit ('1,234 ' );
@@ -149,7 +149,7 @@ public function testSubmitNumericInput(): void
149
149
$ this ->assertSame ('1,234 ' , $ form ->getViewData ());
150
150
}
151
151
152
- public function testSubmitNumericInputWithScale (): void
152
+ public function testSubmitNumericInputWithScale ()
153
153
{
154
154
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , ['input ' => 'number ' , 'scale ' => 2 ]);
155
155
$ form ->submit ('1,234 ' );
@@ -159,7 +159,7 @@ public function testSubmitNumericInputWithScale(): void
159
159
$ this ->assertSame ('1,23 ' , $ form ->getViewData ());
160
160
}
161
161
162
- public function testSubmitStringInput (): void
162
+ public function testSubmitStringInput ()
163
163
{
164
164
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , ['input ' => 'string ' ]);
165
165
$ form ->submit ('1,234 ' );
@@ -169,7 +169,7 @@ public function testSubmitStringInput(): void
169
169
$ this ->assertSame ('1,234 ' , $ form ->getViewData ());
170
170
}
171
171
172
- public function testSubmitStringInputWithScale (): void
172
+ public function testSubmitStringInputWithScale ()
173
173
{
174
174
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , ['input ' => 'string ' , 'scale ' => 2 ]);
175
175
$ form ->submit ('1,234 ' );
0 commit comments