@@ -42,7 +42,7 @@ public function provideTransformations()
4242 public function testTransform ($ from , $ to , $ locale )
4343 {
4444 // Since we test against other locales, we need the full implementation
45- IntlTestHelper::requireFullIntl ($ this );
45+ IntlTestHelper::requireFullIntl ($ this , false );
4646
4747 \Locale::setDefault ($ locale );
4848
@@ -68,7 +68,7 @@ public function provideTransformationsWithGrouping()
6868 public function testTransformWithGrouping ($ from , $ to , $ locale )
6969 {
7070 // Since we test against other locales, we need the full implementation
71- IntlTestHelper::requireFullIntl ($ this );
71+ IntlTestHelper::requireFullIntl ($ this , false );
7272
7373 \Locale::setDefault ($ locale );
7474
@@ -80,7 +80,7 @@ public function testTransformWithGrouping($from, $to, $locale)
8080 public function testTransformWithScale ()
8181 {
8282 // Since we test against "de_AT", we need the full implementation
83- IntlTestHelper::requireFullIntl ($ this );
83+ IntlTestHelper::requireFullIntl ($ this , false );
8484
8585 \Locale::setDefault ('de_AT ' );
8686
@@ -185,7 +185,7 @@ public function transformWithRoundingProvider()
185185 public function testTransformWithRounding ($ scale , $ input , $ output , $ roundingMode )
186186 {
187187 // Since we test against "de_AT", we need the full implementation
188- IntlTestHelper::requireFullIntl ($ this );
188+ IntlTestHelper::requireFullIntl ($ this , false );
189189
190190 \Locale::setDefault ('de_AT ' );
191191
@@ -197,7 +197,7 @@ public function testTransformWithRounding($scale, $input, $output, $roundingMode
197197 public function testTransformDoesNotRoundIfNoScale ()
198198 {
199199 // Since we test against "de_AT", we need the full implementation
200- IntlTestHelper::requireFullIntl ($ this );
200+ IntlTestHelper::requireFullIntl ($ this , false );
201201
202202 \Locale::setDefault ('de_AT ' );
203203
@@ -212,7 +212,7 @@ public function testTransformDoesNotRoundIfNoScale()
212212 public function testReverseTransform ($ to , $ from , $ locale )
213213 {
214214 // Since we test against other locales, we need the full implementation
215- IntlTestHelper::requireFullIntl ($ this );
215+ IntlTestHelper::requireFullIntl ($ this , false );
216216
217217 \Locale::setDefault ($ locale );
218218
@@ -227,7 +227,7 @@ public function testReverseTransform($to, $from, $locale)
227227 public function testReverseTransformWithGrouping ($ to , $ from , $ locale )
228228 {
229229 // Since we test against other locales, we need the full implementation
230- IntlTestHelper::requireFullIntl ($ this );
230+ IntlTestHelper::requireFullIntl ($ this , false );
231231
232232 \Locale::setDefault ($ locale );
233233
@@ -244,7 +244,7 @@ public function testReverseTransformWithGrouping($to, $from, $locale)
244244 public function testReverseTransformWithGroupingAndFixedSpaces ()
245245 {
246246 // Since we test against other locales, we need the full implementation
247- IntlTestHelper::requireFullIntl ($ this );
247+ IntlTestHelper::requireFullIntl ($ this , false );
248248
249249 \Locale::setDefault ('ru ' );
250250
@@ -256,7 +256,7 @@ public function testReverseTransformWithGroupingAndFixedSpaces()
256256 public function testReverseTransformWithGroupingButWithoutGroupSeparator ()
257257 {
258258 // Since we test against "de_AT", we need the full implementation
259- IntlTestHelper::requireFullIntl ($ this );
259+ IntlTestHelper::requireFullIntl ($ this , false );
260260
261261 \Locale::setDefault ('de_AT ' );
262262
@@ -376,7 +376,7 @@ public function testReverseTransformDoesNotRoundIfNoScale()
376376 public function testDecimalSeparatorMayBeDotIfGroupingSeparatorIsNotDot ()
377377 {
378378 // Since we test against other locales, we need the full implementation
379- IntlTestHelper::requireFullIntl ($ this );
379+ IntlTestHelper::requireFullIntl ($ this , false );
380380
381381 \Locale::setDefault ('fr ' );
382382 $ transformer = new NumberToLocalizedStringTransformer (null , true );
@@ -396,7 +396,7 @@ public function testDecimalSeparatorMayBeDotIfGroupingSeparatorIsNotDot()
396396 public function testDecimalSeparatorMayNotBeDotIfGroupingSeparatorIsDot ()
397397 {
398398 // Since we test against "de_AT", we need the full implementation
399- IntlTestHelper::requireFullIntl ($ this );
399+ IntlTestHelper::requireFullIntl ($ this , false );
400400
401401 \Locale::setDefault ('de_AT ' );
402402
@@ -411,7 +411,7 @@ public function testDecimalSeparatorMayNotBeDotIfGroupingSeparatorIsDot()
411411 public function testDecimalSeparatorMayNotBeDotIfGroupingSeparatorIsDotWithNoGroupSep ()
412412 {
413413 // Since we test against "de_AT", we need the full implementation
414- IntlTestHelper::requireFullIntl ($ this );
414+ IntlTestHelper::requireFullIntl ($ this , false );
415415
416416 \Locale::setDefault ('de_AT ' );
417417
@@ -423,7 +423,7 @@ public function testDecimalSeparatorMayNotBeDotIfGroupingSeparatorIsDotWithNoGro
423423 public function testDecimalSeparatorMayBeDotIfGroupingSeparatorIsDotButNoGroupingUsed ()
424424 {
425425 // Since we test against other locales, we need the full implementation
426- IntlTestHelper::requireFullIntl ($ this );
426+ IntlTestHelper::requireFullIntl ($ this , false );
427427
428428 \Locale::setDefault ('fr ' );
429429 $ transformer = new NumberToLocalizedStringTransformer ();
@@ -435,7 +435,7 @@ public function testDecimalSeparatorMayBeDotIfGroupingSeparatorIsDotButNoGroupin
435435 public function testDecimalSeparatorMayBeCommaIfGroupingSeparatorIsNotComma ()
436436 {
437437 // Since we test against other locales, we need the full implementation
438- IntlTestHelper::requireFullIntl ($ this );
438+ IntlTestHelper::requireFullIntl ($ this , false );
439439
440440 \Locale::setDefault ('bg ' );
441441 $ transformer = new NumberToLocalizedStringTransformer (null , true );
@@ -588,7 +588,7 @@ public function testReverseTransformDisallowsCenteredExtraCharacters()
588588 public function testReverseTransformDisallowsCenteredExtraCharactersMultibyte ()
589589 {
590590 // Since we test against other locales, we need the full implementation
591- IntlTestHelper::requireFullIntl ($ this );
591+ IntlTestHelper::requireFullIntl ($ this , false );
592592
593593 \Locale::setDefault ('ru ' );
594594
@@ -605,7 +605,7 @@ public function testReverseTransformDisallowsCenteredExtraCharactersMultibyte()
605605 public function testReverseTransformIgnoresTrailingSpacesInExceptionMessage ()
606606 {
607607 // Since we test against other locales, we need the full implementation
608- IntlTestHelper::requireFullIntl ($ this );
608+ IntlTestHelper::requireFullIntl ($ this , false );
609609
610610 \Locale::setDefault ('ru ' );
611611
@@ -633,7 +633,7 @@ public function testReverseTransformDisallowsTrailingExtraCharacters()
633633 public function testReverseTransformDisallowsTrailingExtraCharactersMultibyte ()
634634 {
635635 // Since we test against other locales, we need the full implementation
636- IntlTestHelper::requireFullIntl ($ this );
636+ IntlTestHelper::requireFullIntl ($ this , false );
637637
638638 \Locale::setDefault ('ru ' );
639639
0 commit comments