8000 Update symfony_server.rst by seb-jean · Pull Request #13570 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Update symfony_server.rst #13570

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

Merged
merged 1 commit into from
Apr 20, 2020
Merged
Changes from all commits
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
Update symfony_server.rst
Remove quotes else there is a message :
WARNING the current dir requires PHP "xxx" (.php-version from current dir: $PATH\.php-version), but this version is not available
  • Loading branch information
seb-jean authored and javiereguiluz committed Apr 20, 2020
commit c7c8b44a1a95602ba9ff576465a3e26dcdfc45cb
4 changes: 2 additions & 2 deletions setup/symfony_server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ root directory:
$ cd my-project/

# use a specific PHP version
$ echo "7.2" > .php-version
$ echo 7.2 > .php-version

# use any PHP 7.x version available
$ echo "7" > .php-version
$ echo 7 > .php-version

.. tip::

Expand Down
0