8000 Reworded the built-in web server articles for Symfony 3.3 by javiereguiluz · Pull Request #8273 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Reworded the built-in web server articles for Symfony 3.3 #8273

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Simplification
  • Loading branch information
javiereguiluz committed Sep 1, 2017
commit 7cf41242b2a9325f6c5d7f1fe22f20bb25c73753
2 changes: 1 addition & 1 deletion setup/built_in_web_server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Then, enable the bundle in the kernel of the application::
$bundles = array(
// ...

if (in_array($this->getEnvironment(), array('dev', 'test'))) {
if ('dev' === $this->getEnvironment()) {
// ...
$bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle();
}
Expand Down
0