Skip to content

Commit 48099a8

Browse files
committed
[HttpKernel] added more fine-grained information about the version (the constant are named after the PHP ones)
1 parent f9aa6f7 commit 48099a8

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Symfony/Component/HttpKernel/Kernel.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5858
protected $classes;
5959
protected $errorReportingLevel;
6060

61-
const VERSION = '2.1.0-DEV';
61+
const VERSION = '2.1.0-DEV';
62+
const VERSION_ID = '20100';
63+
const MAJOR_VERSION = '2';
64+
const MINOR_VERSION = '1';
65+
const RELEASE_VERSION = '0';
66+
const EXTRA_VERSION = 'DEV';
6267

6368
/**
6469
* Constructor.

0 commit comments

Comments
 (0)