@@ -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
@@ -242,7 +242,7 @@ public function testReverseTransformWithGrouping($to, $from, $locale)
242242 public function testReverseTransformWithGroupingAndFixedSpaces ()
243243 {
244244 // Since we test against other locales, we need the full implementation
245- IntlTestHelper::requireFullIntl ($ this );
245+ IntlTestHelper::requireFullIntl ($ this , false );
246246
247247 \Locale::setDefault ('ru ' );
248248
@@ -254,7 +254,7 @@ public function testReverseTransformWithGroupingAndFixedSpaces()
254254 public function testReverseTransformWithGroupingButWithoutGroupSeparator ()
255255 {
256256 // Since we test against "de_AT", we need the full implementation
257- IntlTestHelper::requireFullIntl ($ this );
257+ IntlTestHelper::requireFullIntl ($ this , false );
258258
259259 \Locale::setDefault ('de_AT ' );
260260
@@ -374,7 +374,7 @@ public function testReverseTransformDoesNotRoundIfNoScale()
374374 public function testDecimalSeparatorMayBeDotIfGroupingSeparatorIsNotDot ()
375375 {
376376 // Since we test against other locales, we need the full implementation
377- IntlTestHelper::requireFullIntl ($ this );
377+ IntlTestHelper::requireFullIntl ($ this , false );
378378
379379 \Locale::setDefault ('fr ' );
380380 $ transformer = new NumberToLocalizedStringTransformer (null , true );
@@ -394,7 +394,7 @@ public function testDecimalSeparatorMayBeDotIfGroupingSeparatorIsNotDot()
394394 public function testDecimalSeparatorMayNotBeDotIfGroupingSeparatorIsDot ()
395395 {
396396 // Since we test against "de_DE", we need the full implementation
397- IntlTestHelper::requireFullIntl ($ this );
397+ IntlTestHelper::requireFullIntl ($ this , false );
398398
399399 \Locale::setDefault ('de_DE ' );
400400
@@ -409,7 +409,7 @@ public function testDecimalSeparatorMayNotBeDotIfGroupingSeparatorIsDot()
409409 public function testDecimalSeparatorMayNotBeDotIfGroupingSeparatorIsDotWithNoGroupSep ()
410410 {
411411 // Since we test against "de_DE", we need the full implementation
412- IntlTestHelper::requireFullIntl ($ this );
412+ IntlTestHelper::requireFullIntl ($ this , false );
413413
414414 \Locale::setDefault ('de_DE ' );
415415
@@ -421,7 +421,7 @@ public function testDecimalSeparatorMayNotBeDotIfGroupingSeparatorIsDotWithNoGro
421421 public function testDecimalSeparatorMayBeDotIfGroupingSeparatorIsDotButNoGroupingUsed ()
422422 {
423423 // Since we test against other locales, we need the full implementation
424- IntlTestHelper::requireFullIntl ($ this );
424+ IntlTestHelper::requireFullIntl ($ this , false );
425425
426426 \Locale::setDefault ('fr ' );
427427 $ transformer = new NumberToLocalizedStringTransformer ();
@@ -433,7 +433,7 @@ public function testDecimalSeparatorMayBeDotIfGroupingSeparatorIsDotButNoGroupin
433433 public function testDecimalSeparatorMayBeCommaIfGroupingSeparatorIsNotComma ()
434434 {
435435 // Since we test against other locales, we need the full implementation
436- IntlTestHelper::requireFullIntl ($ this );
436+ IntlTestHelper::requireFullIntl ($ this , false );
437437
438438 \Locale::setDefault ('bg ' );
439439 $ transformer = new NumberToLocalizedStringTransformer (null , true );
@@ -585,7 +585,7 @@ public function testReverseTransformDisallowsCenteredExtraCharacters()
585585 public function testReverseTransformDisallowsCenteredExtraCharactersMultibyte ()
586586 {
587587 // Since we test against other locales, we need the full implementation
588- IntlTestHelper::requireFullIntl ($ this );
588+ IntlTestHelper::requireFullIntl ($ this , false );
589589
590590 \Locale::setDefault ('ru ' );
591591
@@ -601,7 +601,7 @@ public function testReverseTransformDisallowsCenteredExtraCharactersMultibyte()
601601 public function testReverseTransformIgnoresTrailingSpacesInExceptionMessage ()
602602 {
603603 // Since we test against other locales, we need the full implementation
604- IntlTestHelper::requireFullIntl ($ this );
604+ IntlTestHelper::requireFullIntl ($ this , false );
605605
606606 \Locale::setDefault ('ru ' );
607607
@@ -628,7 +628,7 @@ public function testReverseTransformDisallowsTrailingExtraCharacters()
628628 public function testReverseTransformDisallowsTrailingExtraCharactersMultibyte ()
629629 {
630630 // Since we test against other locales, we need the full implementation
631- IntlTestHelper::requireFullIntl ($ this );
631+ IntlTestHelper::requireFullIntl ($ this , false );
632632
633633 \Locale::setDefault ('ru ' );
634634
0 commit comments