@@ -99,7 +99,7 @@ public function testStringInputWithIntData(): void
9999 ]);
100100 }
101101
102- public function testDefaultFormattingWithRounding (): void
102+ public function testDefaultFormattingWithRounding ()
103103 {
104104 $ form = $ this ->factory ->create (static ::TESTED_TYPE , null , ['scale ' => 0 , 'rounding_mode ' => \NumberFormatter::ROUND_UP ]);
105105 $ form ->setData ('12345.54321 ' );
@@ -139,7 +139,7 @@ public function testSubmitNullWithEmptyDataSetToNull()
139139 $ this ->assertNull ($ form ->getData ());
140140 }
141141
142- public function testSubmitNumericInput (): void
142+ public function testSubmitNumericInput ()
143143 {
144144 $ form = $ this ->factory ->create (static ::TESTED_TYPE , null , ['input ' => 'number ' ]);
145145 $ form ->submit ('1,234 ' );
@@ -149,7 +149,7 @@ public function testSubmitNumericInput(): void
149149 $ this ->assertSame ('1,234 ' , $ form ->getViewData ());
150150 }
151151
152- public function testSubmitNumericInputWithScale (): void
152+ public function testSubmitNumericInputWithScale ()
153153 {
154154 $ form = $ this ->factory ->create (static ::TESTED_TYPE , null , ['input ' => 'number ' , 'scale ' => 2 ]);
155155 $ form ->submit ('1,234 ' );
@@ -159,7 +159,7 @@ public function testSubmitNumericInputWithScale(): void
159159 $ this ->assertSame ('1,23 ' , $ form ->getViewData ());
160160 }
161161
162- public function testSubmitStringInput (): void
162+ public function testSubmitStringInput ()
163163 {
164164 $ form = $ this ->factory ->create (static ::TESTED_TYPE , null , ['input ' => 'string ' ]);
165165 $ form ->submit ('1,234 ' );
@@ -169,7 +169,7 @@ public function testSubmitStringInput(): void
169169 $ this ->assertSame ('1,234 ' , $ form ->getViewData ());
170170 }
171171
172- public function testSubmitStringInputWithScale (): void
172+ public function testSubmitStringInputWithScale ()
173173 {
174174 $ form = $ this ->factory ->create (static ::TESTED_TYPE , null , ['input ' => 'string ' , 'scale ' => 2 ]);
175175 $ form ->submit ('1,234 ' );
0 commit comments