Skip to content

Commit

Permalink
[HttpKernel] added some constant for better forward compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed May 11, 2012
1 parent 0d697d2 commit cbc3ed3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Symfony/Component/HttpKernel/Kernel.php
Expand Up @@ -57,7 +57,12 @@ abstract class Kernel implements KernelInterface
protected $startTime;
protected $classes;

const VERSION = '2.0.14-DEV';
const VERSION = '2.0.14-DEV';
const VERSION_ID = '20014';
const MAJOR_VERSION = '2';
const MINOR_VERSION = '0';
const RELEASE_VERSION = '14';
const EXTRA_VERSION = 'DEV';

/**
* Constructor.
Expand Down

0 comments on commit cbc3ed3

Please sign in to comment.