Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3eb2fc1

Browse files
minor #22751 [HttpKernel] Fix the kernel version of 4.0 (Th3Mouk)
This PR was merged into the 3.3-dev branch. Discussion ---------- [HttpKernel] Fix the kernel version of 4.0 | Q | A | ------------- | --- | Branch? | master | Bug fix? | yes | New feature? | no <!-- don't forget updating src/**/CHANGELOG.md files --> | BC breaks? | no | Deprecations? | no <!-- don't forget updating UPGRADE-*.md files --> | Tests pass? | yes | License | MIT <!-- - Bug fixes must be submitted against the lowest branch where they apply (lowest branches are regularly merged to upper ones so they get the fixes too). - Features and deprecations must be submitted against the master branch. - Please fill in this template according to the PR you're about to submit. - Replace this comment by a description of what your PR is solving. --> This solve the version declaration in the kernel for sf4 development. Commits ------- aa223f5 Fix the kernel version of 4.0
2 parents d8594de + aa223f5 commit 3eb2fc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ abstract class Kernel implements KernelInterface, TerminableInterface
6363

6464
const VERSION = '4.0.0-DEV';
6565
const VERSION_ID = 40000;
66-
const MAJOR_VERSION = 0;
66+
const MAJOR_VERSION = 4;
6767
const MINOR_VERSION = 0;
6868
const RELEASE_VERSION = 0;
6969
const EXTRA_VERSION = 'DEV';

0 commit comments

Comments
 (0)