Skip to content

Commit

Permalink
Kernel version constants are integers to actually be comparable numer…
Browse files Browse the repository at this point in the history
…ically
  • Loading branch information
Tobion committed Sep 8, 2015
1 parent 6430c82 commit 4b45bb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Symfony/Component/HttpKernel/Kernel.php
Expand Up @@ -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';

/**
Expand Down

0 comments on commit 4b45bb9

Please sign in to comment.