8000 Merge branch '3.0' · symfony/symfony@8e1c60a · GitHub
[go: up one dir, main page]

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 8e1c60a

Browse files
Merge branch '3.0'
* 3.0: [Intl] Fix int32 min boundary check [VarDumper] Relax tests to pass on appveyor Fixed the styles of the Symfony icon in the web debug toolbar
2 parents 35be993 + 2ca1950 commit 8e1c60a

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/symfony.svg

Lines changed: 1 addition & 1 deletion
Loading

src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ private function getInt64Value($value)
851851
return false;
852852
}
853853

854-
if (PHP_INT_SIZE !== 8 && ($value > self::$int32Max || $value <= -self::$int32Max - 1)) {
854+
if (PHP_INT_SIZE !== 8 && ($value > self::$int32Max || $value < -self::$int32Max - 1)) {
855855
return (float) $value;
856856
}
857857

src/Symfony/Component/VarDumper/Tests/Caster/SplCasterTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,6 @@ public function getCastFileInfoTests()
5757
pathname: "https://google.com/about"
5858
extension: ""
5959
realPath: false
60-
writable: false
61-
readable: false
62-
executable: false
63-
file: false
64-
dir: false
65-
link: false
6660
%A}
6761
EOTXT
6862
),

0 commit comments

Comments
 (0)
0