Skip to content

Commit 3c3615c

Browse files
committed
Merge branch '2.3' into 2.7
2 parents 743f73b + f452b6e commit 3c3615c

File tree

5 files changed

+9
-16
lines changed

5 files changed

+9
-16
lines changed

Diff for: best_practices/web-assets.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ much more concise:
3030

3131
Keep in mind that ``web/`` is a public directory and that anything stored
3232
here will be publicly accessible, including all the original asset files
33-
(e.g. Sass, LESS and CoffeScript files).
33+
(e.g. Sass, LESS and CoffeeScript files).
3434

3535
Using Assetic
3636
-------------

Diff for: book/installation.rst

+2-11
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,6 @@ optional second argument of the ``new`` command:
9898
$ symfony new my_project_name 2.3.26
9999
$ symfony new my_project_name 2.6.5
100100
101-
# use the most recent LTS (Long Term Support) version
102-
$ symfony new my_project_name lts
103-
104101
If you want your project to be based on the latest :ref:`Symfony LTS version <releases-lts>`,
105102
pass ``lts`` as the second argument of the ``new`` command:
106103

@@ -169,9 +166,8 @@ browsing the project directory and executing this command:
169166
$ cd my_project_name/
170167
$ php app/console server:run
171168
172-
Then, open your browser and access the ``http://localhost:8000/app/example``
173-
URL to see the
174-
Welcome page of Symfony:
169+
Then, open your browser and access the ``http://localhost:8000/`` URL to see the
170+
Welcome Page of Symfony:
175171

176172
.. image:: /images/quick_tour/welcome.png
177173
:align: center
@@ -410,11 +406,6 @@ need in your new application.
410406
Be sure to also check out the :doc:`Cookbook </cookbook/index>`, which contains
411407
a wide variety of articles about solving specific problems with Symfony.
412408

413-
.. note::
414-
415-
If you want to remove the sample code from your distribution, take a look
416-
at this cookbook article: ":doc:`/cookbook/bundles/remove`"
417-
418409
.. _`explained in this post`: http://fabien.potencier.org/article/73/signing-project-releases
419410
.. _`Composer`: https://getcomposer.org/
420411
.. _`Composer download page`: https://getcomposer.org/download/

Diff for: book/page_creation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ a method inside of it that will be executed when someone goes to ``/lucky/number
4343
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
4444
use Symfony\Component\HttpFoundation\Response;
4545

46-
class LuckyController
46+
class LuckyController extends Controller
4747
{
4848
/**
4949
* @Route("/lucky/number")

Diff for: cookbook/deployment/platformsh.rst

+5-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ Platform.sh how to deploy your application (read more about
3737
3838
# The name of this app. Must be unique within a project.
3939
name: myphpproject
40-
41-
# The toolstack used to build the application.
42-
toolstack: "php:symfony"
40+
41+
# The type of the application to build.
42+
type: php:5.6
43+
build:
44+
flavor: symfony
4345
4446
# The relationships of the application with services or other applications.
4547
# The left-hand side is the name of the relationship as it will be exposed

Diff for: images/quick_tour/welcome.png

15 KB
Loading

0 commit comments

Comments
 (0)