Skip to content

Commit

Permalink
Merge branch '2.7' into 2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed Aug 19, 2015
2 parents 3bdfec4 + 3c3615c commit ed71759
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 16 deletions.
2 changes: 1 addition & 1 deletion best_practices/web-assets.rst
Expand Up @@ -30,7 +30,7 @@ much more concise:

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

Using Assetic
-------------
Expand Down
13 changes: 2 additions & 11 deletions book/installation.rst
Expand Up @@ -98,9 +98,6 @@ optional second argument of the ``new`` command:
$ symfony new my_project_name 2.3.26
$ symfony new my_project_name 2.6.5
# use the most recent LTS (Long Term Support) version
$ symfony new my_project_name lts
If you want your project to be based on the latest :ref:`Symfony LTS version <releases-lts>`,
pass ``lts`` as the second argument of the ``new`` command:

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

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

.. note::

If you want to remove the sample code from your distribution, take a look
at this cookbook article: ":doc:`/cookbook/bundles/remove`"

.. _`explained in this post`: http://fabien.potencier.org/article/73/signing-project-releases
.. _`Composer`: https://getcomposer.org/
.. _`Composer download page`: https://getcomposer.org/download/
Expand Down
2 changes: 1 addition & 1 deletion book/page_creation.rst
Expand Up @@ -43,7 +43,7 @@ a method inside of it that will be executed when someone goes to ``/lucky/number
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Response;

class LuckyController
class LuckyController extends Controller
{
/**
* @Route("/lucky/number")
Expand Down
8 changes: 5 additions & 3 deletions cookbook/deployment/platformsh.rst
Expand Up @@ -37,9 +37,11 @@ Platform.sh how to deploy your application (read more about
# The name of this app. Must be unique within a project.
name: myphpproject
# The toolstack used to build the application.
toolstack: "php:symfony"
# The type of the application to build.
type: php:5.6
build:
flavor: symfony
# The relationships of the application with services or other applications.
# The left-hand side is the name of the relationship as it will be exposed
Expand Down
Binary file modified images/quick_tour/welcome.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ed71759

Please sign in to comment.