@@ -65,7 +65,7 @@ public static function provideTransformations()
65
65
public function testTransform ($ from , $ to , $ locale )
66
66
{
67
67
// Since we test against other locales, we need the full implementation
68
- IntlTestHelper::requireFullIntl ($ this , false );
68
+ IntlTestHelper::requireFullIntl ($ this );
69
69
70
70
\Locale::setDefault ($ locale );
71
71
@@ -91,7 +91,7 @@ public static function provideTransformationsWithGrouping()
91
91
public function testTransformWithGrouping ($ from , $ to , $ locale )
92
92
{
93
93
// Since we test against other locales, we need the full implementation
94
- IntlTestHelper::requireFullIntl ($ this , false );
94
+ IntlTestHelper::requireFullIntl ($ this );
95
95
96
96
\Locale::setDefault ($ locale );
97
97
@@ -103,7 +103,7 @@ public function testTransformWithGrouping($from, $to, $locale)
103
103
public function testTransformWithScale ()
104
104
{
105
105
// Since we test against "de_AT", we need the full implementation
106
- IntlTestHelper::requireFullIntl ($ this , false );
106
+ IntlTestHelper::requireFullIntl ($ this );
107
107
108
108
\Locale::setDefault ('de_AT ' );
109
109
@@ -208,7 +208,7 @@ public static function transformWithRoundingProvider()
208
208
public function testTransformWithRounding ($ scale , $ input , $ output , $ roundingMode )
209
209
{
210
210
// Since we test against "de_AT", we need the full implementation
211
- IntlTestHelper::requireFullIntl ($ this , false );
211
+ IntlTestHelper::requireFullIntl ($ this );
212
212
213
213
\Locale::setDefault ('de_AT ' );
214
214
@@ -220,7 +220,7 @@ public function testTransformWithRounding($scale, $input, $output, $roundingMode
220
220
public function testTransformDoesNotRoundIfNoScale ()
221
221
{
222
222
// Since we test against "de_AT", we need the full implementation
223
- IntlTestHelper::requireFullIntl ($ this , false );
223
+ IntlTestHelper::requireFullIntl ($ this );
224
224
225
225
\Locale::setDefault ('de_AT ' );
226
226
@@ -235,7 +235,7 @@ public function testTransformDoesNotRoundIfNoScale()
235
235
public function testReverseTransform ($ to , $ from , $ locale )
236
236
{
237
237
// Since we test against other locales, we need the full implementation
238
- IntlTestHelper::requireFullIntl ($ this , false );
238
+ IntlTestHelper::requireFullIntl ($ this );
239
239
240
240
\Locale::setDefault ($ locale );
241
241
@@ -265,7 +265,7 @@ public function testReverseTransformWithGrouping($to, $from, $locale)
265
265
public function testReverseTransformWithGroupingAndFixedSpaces ()
266
266
{
267
267
// Since we test against other locales, we need the full implementation
268
- IntlTestHelper::requireFullIntl ($ this , false );
268
+ IntlTestHelper::requireFullIntl ($ this );
269
269
270
270
\Locale::setDefault ('ru ' );
271
271
@@ -277,7 +277,7 @@ public function testReverseTransformWithGroupingAndFixedSpaces()
277
277
public function testReverseTransformWithGroupingButWithoutGroupSeparator ()
278
278
{
279
279
// Since we test against "de_AT", we need the full implementation
280
- IntlTestHelper::requireFullIntl ($ this , false );
280
+ IntlTestHelper::requireFullIntl ($ this );
281
281
282
282
\Locale::setDefault ('de_AT ' );
283
283
@@ -442,7 +442,7 @@ public function testDecimalSeparatorMayNotBeDotIfGroupingSeparatorIsDotWithNoGro
442
442
public function testDecimalSeparatorMayBeDotIfGroupingSeparatorIsDotButNoGroupingUsed ()
443
443
{
444
444
// Since we test against other locales, we need the full implementation
445
- IntlTestHelper::requireFullIntl ($ this , false );
445
+ IntlTestHelper::requireFullIntl ($ this );
446
446
447
447
\Locale::setDefault ('fr ' );
448
448
$ transformer = new NumberToLocalizedStringTransformer ();
@@ -588,7 +588,7 @@ public function testReverseTransformDisallowsCenteredExtraCharactersMultibyte()
588
588
$ this ->expectException (TransformationFailedException::class);
589
589
$ this ->expectExceptionMessage ('The number contains unrecognized characters: "foo8" ' );
590
590
// Since we test against other locales, we need the full implementation
591
- IntlTestHelper::requireFullIntl ($ this , false );
591
+ IntlTestHelper::requireFullIntl ($ this );
592
592
593
593
\Locale::setDefault ('ru ' );
594
594
@@ -602,7 +602,7 @@ public function testReverseTransformIgnoresTrailingSpacesInExceptionMessage()
602
602
$ this ->expectException (TransformationFailedException::class);
603
603
$ this ->expectExceptionMessage ('The number contains unrecognized characters: "foo8" ' );
604
604
// Since we test against other locales, we need the full implementation
605
- IntlTestHelper::requireFullIntl ($ this , false );
605
+ IntlTestHelper::requireFullIntl ($ this );
606
606
607
607
\Locale::setDefault ('ru ' );
608
608
@@ -625,7 +625,7 @@ public function testReverseTransformDisallowsTrailingExtraCharactersMultibyte()
625
625
$ this ->expectException (TransformationFailedException::class);
626
626
$ this ->expectExceptionMessage ('The number contains unrecognized characters: "foo" ' );
627
627
// Since we test against other locales, we need the full implementation
628
- IntlTestHelper::requireFullIntl ($ this , false );
628
+ IntlTestHelper::requireFullIntl ($ this );
629
629
630
630
\Locale::setDefault ('ru ' );
631
631
0 commit comments