Skip to content

Commit f19a8f1

Browse files
committed
minor symfony#6980 Use strict comparison (greg0ire)
This PR was merged into the 2.7 branch. Discussion ---------- Use strict comparison Commits ------- 2c1986f Use strict comparison
2 parents 79b59a0 + 2c1986f commit f19a8f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup/bundles.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Before diving into the specifics of the most common edge cases, the general
173173
recommendation is to **not rely on the Symfony Kernel version** to decide which
174174
code to use::
175175

176-
if (Kernel::VERSION_ID <= 20800) {
176+
if (Kernel::VERSION_ID < 20800) {
177177
// code for Symfony 2.x
178178
} else {
179179
// code for Symfony 3.x

0 commit comments

Comments
 (0)