Skip to content

Commit a4105f4

Browse files
committed
[glossary] Making the glossary sort by default and slightly modifying the format so so that it would render correctly.
1 parent 6649191 commit a4105f4

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

glossary.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,36 +4,37 @@ Glossary
44
========
55

66
.. glossary::
7+
:sorted:
78

8-
Project
9+
Project
910
A *Project* is a directory composed of an Application, a set of
1011
bundles, vendor libraries, an autoloader, and web front controller
1112
scripts.
1213

13-
Application
14+
Application
1415
An *Application* is a directory containing the *configuration* for a
1516
given set of Bundles.
1617

17-
Bundle
18+
Bundle
1819
A *Bundle* is a structured set of files (PHP files, stylesheets,
1920
JavaScripts, images, ...) that *implement* a single feature (a blog,
2021
a forum, ...) and which can be easily shared with other developers.
2122

22-
Front Controller
23+
Front Controller
2324
A *Front Controller* is a short PHP that lives in the web directory
2425
of your project. Typically, *all* requests are handled by executing
2526
the same front controller, whose job is to bootstrap the Symfony
2627
application.
2728

28-
Service
29+
Service
2930
A *Service* is a generic term for any PHP object that performs a
3031
specific task. A service is usually used "globally", such as a database
3132
connection object or an object that delivers email messages. In Symfony2,
3233
services are often configured and retrieved from the service container.
3334
An application that has many decoupled services is said to follow
3435
a `service-oriented architecture`_.
3536

36-
Service Container
37+
Service Container
3738
A *Service Container*, also known as a *Dependency Injection Container*,
3839
is a special object that manages the instantiation of services inside
3940
an application. Instead of creating services directly, the developer

0 commit comments

Comments
 (0)