Skip to content

Commit 6b7d536

Browse files
committed
use "Symfony Framework" instead of "Symfony framework"
1 parent 07bc4db commit 6b7d536

22 files changed

+39
-39
lines changed

best_practices/introduction.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
The Symfony Framework Best Practices
55
====================================
66

7-
The Symfony framework is well-known for being *really* flexible and is used
7+
The Symfony Framework is well-known for being *really* flexible and is used
88
to build micro-sites, enterprise applications that handle billions of connections
99
and even as the basis for *other* frameworks. Since its release in July 2011,
1010
the community has learned a lot about what's possible and how to do things *best*.
@@ -19,7 +19,7 @@ What is this Guide About?
1919
-------------------------
2020

2121
This guide aims to fix that by describing the **best practices for developing
22-
web apps with the Symfony full-stack framework**. These are best practices that
22+
web apps with the Symfony full-stack Framework**. These are best practices that
2323
fit the philosophy of the framework as envisioned by its original creator
2424
`Fabien Potencier`_.
2525

@@ -32,7 +32,7 @@ fit the philosophy of the framework as envisioned by its original creator
3232

3333
This guide is **specially suited** for:
3434

35-
* Websites and web applications developed with the full-stack Symfony framework.
35+
* Websites and web applications developed with the full-stack Symfony Framework.
3636

3737
For other situations, this guide might be a good **starting point** that you can
3838
then **extend and fit to your specific needs**:

book/doctrine.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Databases and Doctrine
66

77
One of the most common and challenging tasks for any application
88
involves persisting and reading information to and from a database. Although
9-
the Symfony full-stack framework doesn't integrate any ORM by default,
9+
the Symfony full-stack Framework doesn't integrate any ORM by default,
1010
the Symfony Standard Edition, which is the most widely used distribution,
1111
comes integrated with `Doctrine`_, a library whose sole goal is to give
1212
you powerful tools to make this easy. In this chapter, you'll learn the

book/forms.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1526,7 +1526,7 @@ file, you can see every block needed to render a form and every default field
15261526
type.
15271527

15281528
In PHP, the fragments are individual template files. By default they are located in
1529-
the `Resources/views/Form` directory of the framework bundle (`view on GitHub`_).
1529+
the ``Resources/views/Form`` directory of the FrameworkBundle (`view on GitHub`_).
15301530

15311531
Each fragment name follows the same basic pattern and is broken up into two pieces,
15321532
separated by a single underscore character (``_``). A few examples are:

book/http_fundamentals.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ the user is connecting via a secured connection (i.e. HTTPS).
266266

267267
The Request class also has a public ``attributes`` property, which holds
268268
special data related to how the application works internally. For the
269-
Symfony framework, the ``attributes`` holds the values returned by the
269+
Symfony Framework, the ``attributes`` holds the values returned by the
270270
matched route, like ``_controller``, ``id`` (if you have an ``{id}``
271271
wildcard), and even the name of the matched route (``_route``). The
272272
``attributes`` property exists entirely to be a place where you can
@@ -500,7 +500,7 @@ emails, validating user input and handling security.
500500
The good news is that none of these problems is unique. Symfony provides
501501
a framework full of tools that allow you to build your application, not your
502502
tools. With Symfony, nothing is imposed on you: you're free to use the full
503-
Symfony framework, or just one piece of Symfony all by itself.
503+
Symfony Framework, or just one piece of Symfony all by itself.
504504

505505
.. index::
506506
single: Symfony Components
@@ -542,9 +542,9 @@ regardless of how your project is developed. To name a few:
542542
:doc:`Translation </components/translation/introduction>`
543543
A framework for translating strings in your application.
544544

545-
Each one of these components is decoupled and can be used in *any*
546-
PHP project, regardless of whether or not you use the Symfony framework.
547-
Every part is made to be used if needed and replaced when necessary.
545+
Each one of these components is decoupled and can be used in *any* PHP project,
546+
regardless of whether or not you use the Symfony Framework. Every part is
547+
made to be used if needed and replaced when necessary.
548548

549549
.. _the-full-solution-the-symfony2-framework:
550550

book/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ you can create Symfony applications using the alternative installation method
126126
based on `Composer`_.
127127

128128
Composer is the dependency manager used by modern PHP applications and it can
129-
also be used to create new applications based on the Symfony framework. If you
129+
also be used to create new applications based on the Symfony Framework. If you
130130
don't have installed it globally, start by reading the next section.
131131

132132
Installing Composer Globally
@@ -321,7 +321,7 @@ applications:
321321
* The `Symfony CMF Standard Edition`_ is the best distribution to get started
322322
with the `Symfony CMF`_ project, which is a project that makes it easier for
323323
developers to add CMS functionality to applications built with the Symfony
324-
framework.
324+
Framework.
325325
* The `Symfony REST Edition`_ shows how to build an application that provides a
326326
RESTful API using the FOSRestBundle and several other related bundles.
327327

book/internals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ On top of HttpFoundation is the :namespace:`Symfony\\Component\\HttpKernel`
5555
component. HttpKernel handles the dynamic part of HTTP; it is a thin wrapper
5656
on top of the Request and Response classes to standardize the way requests are
5757
handled. It also provides extension points and tools that makes it the ideal
58-
starting point to create a Web framework without too much overhead.
58+
starting point to create a web framework without too much overhead.
5959

6060
It also optionally adds configurability and extensibility, thanks to the
6161
DependencyInjection component and a powerful plugin system (bundles).

book/page_creation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ in mind:
10821082
and ``vendor/`` (third-party code) (there's also a ``bin/`` directory that's
10831083
used to help updated vendor libraries);
10841084

1085-
* Each feature in Symfony (including the Symfony framework core) is organized
1085+
* Each feature in Symfony (including the Symfony Framework core) is organized
10861086
into a *bundle*, which is a structured set of files for that feature;
10871087

10881088
* The **configuration** for each bundle lives in the ``Resources/config``

book/service_container.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ In other words, a service container extension configures the services for
461461
a bundle on your behalf. And as you'll see in a moment, the extension provides
462462
a sensible, high-level interface for configuring the bundle.
463463

464-
Take the FrameworkBundle - the core Symfony framework bundle - as an
464+
Take the FrameworkBundle - the core Symfony Framework bundle - as an
465465
example. The presence of the following code in your application configuration
466466
invokes the service container extension inside the FrameworkBundle:
467467

@@ -516,7 +516,7 @@ can handle the ``framework`` configuration directive. The extension in question,
516516
which lives in the FrameworkBundle, is invoked and the service configuration
517517
for the FrameworkBundle is loaded. If you remove the ``framework`` key
518518
from your application configuration file entirely, the core Symfony services
519-
won't be loaded. The point is that you're in control: the Symfony framework
519+
won't be loaded. The point is that you're in control: the Symfony Framework
520520
doesn't contain any magic or perform any actions that you don't have control
521521
over.
522522

book/templating.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1345,7 +1345,7 @@ subdirectory.
13451345
Overriding Core Templates
13461346
~~~~~~~~~~~~~~~~~~~~~~~~~
13471347

1348-
Since the Symfony framework itself is just a bundle, core templates can be
1348+
Since the Symfony Framework itself is just a bundle, core templates can be
13491349
overridden in the same way. For example, the core TwigBundle contains
13501350
a number of different "exception" and "error" templates that can be overridden
13511351
by copying each from the ``Resources/views/Exception`` directory of the

book/translation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ into the language of the user::
2727
*country* code (e.g. ``fr_FR`` for French/France) is recommended.
2828

2929
In this chapter, you'll learn how to use the Translation component in the
30-
Symfony framework. You can read the
30+
Symfony Framework. You can read the
3131
:doc:`Translation component documentation </components/translation/usage>`
3232
to learn even more. Overall, the process has several steps:
3333

0 commit comments

Comments
 (0)