File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ to create files and execute the following commands:
33
33
34
34
# Windows
35
35
c:\> cd projects/
36
- c:\p rojects\> php symfony.phar new blog
36
+ c:\p rojects\> php symfony new blog
37
37
38
38
This command creates a new directory called ``blog `` that contains a fresh new
39
39
project based on the most recent stable Symfony version available. In addition,
@@ -110,10 +110,10 @@ Symfony documentation uses the AppBundle name.
110
110
There is no need to prefix the AppBundle with your own vendor (e.g.
111
111
AcmeAppBundle), because this application bundle is never going to be
112
112
shared.
113
-
113
+
114
114
.. note ::
115
-
116
- Another reason to create a new bundle is when you're overriding something
115
+
116
+ Another reason to create a new bundle is when you're overriding something
117
117
in a vendor's bundle (e.g. a controller). See :doc: `/cookbook/bundles/inheritance `.
118
118
119
119
All in all, this is the typical directory structure of a Symfony application
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Open your command console and execute the following commands:
32
32
33
33
.. code-block :: bash
34
34
35
- $ sudo curl -LsS http ://symfony.com/installer -o /usr/local/bin/symfony
35
+ $ sudo curl -LsS https ://symfony.com/installer -o /usr/local/bin/symfony
36
36
$ sudo chmod a+x /usr/local/bin/symfony
37
37
38
38
This will create a global ``symfony `` command in your system.
@@ -44,7 +44,7 @@ Open your command console and execute the following command:
44
44
45
45
.. code-block :: bash
46
46
47
- c:\> php -r " readfile('http ://symfony.com/installer');" > symfony
47
+ c:\> php -r " readfile('https ://symfony.com/installer');" > symfony
48
48
49
49
Then, move the downloaded ``symfony `` file to your project's directory and
50
50
execute it as follows:
You can’t perform that action at this time.
0 commit comments