Skip to content

Commit a7fe4bf

Browse files
minor #29164 [FrameworkBundle] Application::bootstrapEnv() minor tweaks (fmata)
This PR was merged into the 4.2-dev branch. Discussion ---------- [FrameworkBundle] Application::bootstrapEnv() minor tweaks | Q | A | ------------- | --- | Branch? | master | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | License | MIT Just 2 minor tweaks to #29154 caught while reviewing. Commits ------- 4e92e6e [FrameworkBundle] Application::bootstrapEnv() upgrade doc fix
2 parents 1b82e56 + 4e92e6e commit a7fe4bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

UPGRADE-4.2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ FrameworkBundle
192192

193193
After:
194194
```php
195-
Application::bootstrapEnv($_SERVER['argv'];
195+
Application::bootstrapEnv($_SERVER['argv']);
196196
$kernel = new Kernel($_SERVER['APP_ENV'], $_SERVER['APP_DEBUG']);
197197
$application = new Application($kernel);
198198
$application->run();

UPGRADE-5.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ FrameworkBundle
181181

182182
After:
183183
```php
184-
Application::bootstrapEnv($_SERVER['argv'];
184+
Application::bootstrapEnv($_SERVER['argv']);
185185
$kernel = new Kernel($_SERVER['APP_ENV'], $_SERVER['APP_DEBUG']);
186186
$application = new Application($kernel);
187187
$application->run();

0 commit comments

Comments
 (0)