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

Skip to content

Commit 4e92e6e

Browse files
committed
[FrameworkBundle] Application::bootstrapEnv() upgrade doc fix
1 parent 1b82e56 commit 4e92e6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

UPGRADE-4.2.md

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)