Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 595dd3b

Browse filesBrowse files
Merge branch '5.1'
* 5.1: (33 commits) [Cache] $lifetime cannot be null [Serializer] minor cleanup fix merge Run PHP 8 as 7.4.99 Remove calls to deprecated ReflectionParameter::getClass(). [VarDumper] fix PHP 8 support Removed "services" prototype node from "custom_authenticator" Add php 8 to travis. [Cache] Accessing undefined constants raises an Error in php8 [Cache] allow DBAL v3 Skip Doctrine DBAL on php 8 until we have a compatible version. [DomCrawler] Catch expected ValueError. Made method signatures compatible with their corresponding traits. [ErrorHandler] Apply php8 fixes from Debug component. [DomCrawler] Catch expected ValueError. [Validator] Catch expected ValueError. [VarDumper] ReflectionFunction::isDisabled() is deprecated. [BrowserKit] Raw body with custom Content-Type header Revert symfony/symfony#34986 Make ExpressionLanguageSyntax validator usable with annotation ...
2 parents b8ad099 + 954c161 commit 595dd3b
Copy full SHA for 595dd3b

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎Tests/NumberFormatter/AbstractNumberFormatterTest.php

Copy file name to clipboardExpand all lines: Tests/NumberFormatter/AbstractNumberFormatterTest.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ public function testGetSymbol()
600600

601601
$r = new \ReflectionProperty('Symfony\Component\Intl\NumberFormatter\NumberFormatter', 'enSymbols');
602602
$r->setAccessible(true);
603-
$expected = $r->getValue('Symfony\Component\Intl\NumberFormatter\NumberFormatter');
603+
$expected = $r->getValue();
604604

605605
for ($i = 0; $i <= 17; ++$i) {
606606
$this->assertSame($expected[1][$i], $decimalFormatter->getSymbol($i));
@@ -617,7 +617,7 @@ public function testGetTextAttribute()
617617

618618
$r = new \ReflectionProperty('Symfony\Component\Intl\NumberFormatter\NumberFormatter', 'enTextAttributes');
619619
$r->setAccessible(true);
620-
$expected = $r->getValue('Symfony\Component\Intl\NumberFormatter\NumberFormatter');
620+
$expected = $r->getValue();
621621

622622
for ($i = 0; $i <= 5; ++$i) {
623623
$this->assertSame($expected[1][$i], $decimalFormatter->getTextAttribute($i));

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.