Skip to content

Commit 4b45bb9

Browse files
committed
Kernel version constants are integers to actually be comparable numerically
1 parent 6430c82 commit 4b45bb9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ abstract class Kernel implements KernelInterface, TerminableInterface
6161
protected $loadClassCache;
6262

6363
const VERSION = '2.3.33-DEV';
64-
const VERSION_ID = '20333';
65-
const MAJOR_VERSION = '2';
66-
const MINOR_VERSION = '3';
67-
const RELEASE_VERSION = '33';
64+
const VERSION_ID = 20333;
65+
const MAJOR_VERSION = 2;
66+
const MINOR_VERSION = 3;
67+
const RELEASE_VERSION = 33;
6868
const EXTRA_VERSION = 'DEV';
6969

7070
/**

0 commit comments

Comments
 (0)