File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ whatever component you want.
31
31
32
32
.. tip ::
33
33
34
- `Install composer `_ if you don't have it already present on your system.
34
+ `Install Composer `_ if you don't have it already present on your system.
35
35
Depending on how you install, you may end up with a ``composer.phar ``
36
36
file in your directory. In that case, no worries! Just run
37
37
``php composer.phar require symfony/finder ``.
@@ -78,4 +78,4 @@ documentation to find out more about how to use it.
78
78
And have fun!
79
79
80
80
.. _Composer : https://getcomposer.org
81
- .. _Install composer : https://getcomposer.org/download/
81
+ .. _Install Composer : https://getcomposer.org/download/
Original file line number Diff line number Diff line change @@ -740,8 +740,8 @@ needed objects and values. It is an instance of
740
740
The available attributes are:
741
741
742
742
* ``app.user ``, a PHP object representing the current user;
743
- * ``app.request ``, a :class: `` Symfony\\ Component\\ HttpFoundation\\ Request` ` object;
744
- * ``app.session ``, a :class: `` Symfony\\ Component\\ HttpFoundation\\ Session\\ Session` ` object;
743
+ * ``app.request ``, a :class: `Symfony\\ Component\\ HttpFoundation\\ Request ` object;
744
+ * ``app.session ``, a :class: `Symfony\\ Component\\ HttpFoundation\\ Session\\ Session ` object;
745
745
* ``app.environment ``, a string with the name of the execution environment;
746
746
* ``app.debug ``, a boolean telling whether the debug mode is enabled in the app;
747
747
* ``app.token ``, a :class: `Symfony\\ Component\\ Security\\ Core\\ Authentication\\ Token\\ TokenInterface `
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ Configuration of the service container then looks like this:
108
108
109
109
AppBundle\Email\NewsletterManager :
110
110
# call a method on the specified factory service
111
- factory : ' AppBundle\Email\NewsletterManagerFactory:: createNewsletterManager'
111
+ factory : ' AppBundle\Email\NewsletterManagerFactory:createNewsletterManager'
112
112
113
113
.. code-block :: xml
114
114
@@ -160,7 +160,7 @@ Configuration of the service container then looks like this:
160
160
161
161
AppBundle\Email\NewsletterManager :
162
162
# new syntax
163
- factory : ' AppBundle\Email\NewsletterManagerFactory:: createNewsletterManager'
163
+ factory : ' AppBundle\Email\NewsletterManagerFactory:createNewsletterManager'
164
164
# old syntax
165
165
factory : ['@AppBundle\Email\NewsletterManagerFactory', createNewsletterManager]
166
166
You can’t perform that action at this time.
0 commit comments