Kernel version constants are integers to actually be comparable numerically

This commit is contained in:
Tobias Schultze 2015-09-08 21:33:18 +02:00
parent 6430c828f6
commit 4b45bb91ab
1 changed files with 4 additions and 4 deletions

View File

@ -61,10 +61,10 @@ abstract class Kernel implements KernelInterface, TerminableInterface
protected $loadClassCache;
const VERSION = '2.3.33-DEV';
const VERSION_ID = '20333';
const MAJOR_VERSION = '2';
const MINOR_VERSION = '3';
const RELEASE_VERSION = '33';
const VERSION_ID = 20333;
const MAJOR_VERSION = 2;
const MINOR_VERSION = 3;
const RELEASE_VERSION = 33;
const EXTRA_VERSION = 'DEV';
/**