Skip to content

Commit d76516d

Browse files
committed
use "Symfony Framework" instead of "Symfony framework"
1 parent 6e2db0a commit d76516d

22 files changed

+36
-36
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
@@ -1519,7 +1519,7 @@ file, you can see every block needed to render a form and every default field
15191519
type.
15201520

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

15241524
Each fragment name follows the same basic pattern and is broken up into two pieces,
15251525
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
@@ -112,7 +112,7 @@ you can create Symfony applications using the alternative installation method
112112
based on `Composer`_.
113113

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

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

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
@@ -1081,7 +1081,7 @@ in mind:
10811081
and ``vendor/`` (third-party code) (there's also a ``bin/`` directory that's
10821082
used to help updated vendor libraries);
10831083

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

10871087
* 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
@@ -462,7 +462,7 @@ In other words, a service container extension configures the services for
462462
a bundle on your behalf. And as you'll see in a moment, the extension provides
463463
a sensible, high-level interface for configuring the bundle.
464464

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

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

book/templating.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1312,7 +1312,7 @@ subdirectory.
13121312
Overriding Core Templates
13131313
~~~~~~~~~~~~~~~~~~~~~~~~~
13141314

1315-
Since the Symfony framework itself is just a bundle, core templates can be
1315+
Since the Symfony Framework itself is just a bundle, core templates can be
13161316
overridden in the same way. For example, the core TwigBundle contains
13171317
a number of different "exception" and "error" templates that can be overridden
13181318
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)