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

View File

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