Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit 6f060d0

Browse files
committed
[gentle-introduction] removed redundant paragraphs
1 parent 638faaf commit 6f060d0

File tree

2 files changed

+3
-24
lines changed

2 files changed

+3
-24
lines changed

gentle-introduction/en/01-Introducing-Symfony.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ And, of course, if you are a professional web developer, you already know all th
9494
Fundamental Concepts
9595
--------------------
9696

97-
Before you get started with symfony, you should understand a few basic concepts. Feel free to skip ahead if you already know the meaning of OOP, ORM, RAD, DRY, KISS, TDD, YAML, and PEAR.
97+
Before you get started with symfony, you should understand a few basic concepts. Feel free to skip ahead if you already know the meaning of OOP, ORM, RAD, DRY, KISS, TDD, and YAML.
9898

9999
### PHP
100100

gentle-introduction/en/03-Running-Symfony.markdown

+2-23
Original file line numberDiff line numberDiff line change
@@ -247,20 +247,7 @@ On Windows:
247247
c:\> php lib\vendor\symfony\data\bin\symfony generate:project PROJECT_NAME
248248

249249
The `generate:project` task generates the default structure of directories and
250-
files needed for a symfony project:
251-
252-
| Directory | Description
253-
| ----------- | ----------------------------------
254-
| `apps/` | Hosts all project applications
255-
| `cache/` | The files cached by the framework
256-
| `config/` | The project configuration files
257-
| `data/` | Data files like initial fixtures
258-
| `doc/` | The project documentation files
259-
| `lib/` | The project libraries and classes
260-
| `log/` | The framework log files
261-
| `plugins/` | The installed plugins
262-
| `test/` | The unit and functional test files
263-
| `web/` | The web root directory (see below)
250+
files needed for a symfony project.
264251

265252
>**NOTE**
266253
>Why does symfony generate so many files? One of the main benefits of using
@@ -315,15 +302,7 @@ Now, create the frontend application by running the `generate:app` task:
315302
316303
Based on the application name given as an *argument*, the `generate:app` task
317304
creates the default directory structure needed for the application under the
318-
`apps/frontend/` directory:
319-
320-
| Directory | Description
321-
| ------------ | -------------------------------------
322-
| `config/` | The application configuration files
323-
| `i18n/` | Tha application XLIFF files for translation
324-
| `lib/` | The application libraries and classes
325-
| `modules/` | The application code (MVC)
326-
| `templates/` | The global template files
305+
`apps/frontend/` directory.
327306

328307
>**SIDEBAR**
329308
>Security

0 commit comments

Comments
 (0)